From 09add3e8ac3be54b1e6c068e87d4fb5143c6d785 Mon Sep 17 00:00:00 2001 From: Dream-Master Date: Tue, 21 Jun 2016 18:50:29 +0200 Subject: even with Blood asp experimental branch --- .../java/speiger/src/crops/api/ICropCardInfo.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/main/java/speiger/src/crops/api/ICropCardInfo.java (limited to 'src/main/java/speiger') diff --git a/src/main/java/speiger/src/crops/api/ICropCardInfo.java b/src/main/java/speiger/src/crops/api/ICropCardInfo.java new file mode 100644 index 0000000000..34d35edc12 --- /dev/null +++ b/src/main/java/speiger/src/crops/api/ICropCardInfo.java @@ -0,0 +1,19 @@ +package speiger.src.crops.api; + +import java.util.List; + +import net.minecraft.item.ItemStack; + +/** + * + * @author Speiger + * Class to add Informations from CropCards. + * This has Priorty over the ICropInfo + * @requirement: The class that implement this class need to extends CropCard + */ +public interface ICropCardInfo +{ + public List getCropInformation(); + + public ItemStack getDisplayItem(); +} -- cgit