This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
EnergonRelics/src/main/java/com/thebrokenrail/energonrelics/registry/infuser/data/InfuserOutputItem.java

31 lines
692 B
Java
Raw Normal View History

2020-08-04 17:06:11 +00:00
package com.thebrokenrail.energonrelics.registry.infuser.data;
2020-08-03 17:00:08 +00:00
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.item.ItemStack;
2020-08-04 21:49:02 +00:00
/**
* Output Item For Display In REI
*/
2020-08-03 17:00:08 +00:00
@Environment(EnvType.CLIENT)
public class InfuserOutputItem {
2020-08-04 21:49:02 +00:00
/**
* Is This A Real Item
*/
2020-08-03 17:00:08 +00:00
public final boolean outputsItem;
2020-08-04 21:49:02 +00:00
/**
* Display Item
*/
2020-08-03 17:00:08 +00:00
public final ItemStack stack;
2020-08-04 21:49:02 +00:00
/**
* Create Display Item
* @param outputsItem Is This A Real Item
* @param item Display Item
*/
2020-08-03 17:00:08 +00:00
public InfuserOutputItem(boolean outputsItem, ItemStack item) {
this.outputsItem = outputsItem;
this.stack = item;
}
}