blob: ccaf2d4ec4fab29a555dbbe47d8ca6e3e6c9b5b3 (
plain)
1
2
3
4
5
6
7
8
|
package binnie.core.genetics;
import net.minecraft.item.ItemStack;
public abstract interface IItemStackRepresentitive
{
public abstract ItemStack getItemStackRepresentitive();
}
|