From 072f6322fb789703f163030edf4b60bf5a0201af Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sat, 27 Aug 2016 01:34:08 +1000 Subject: + Attempted to add custom IC2 generators. % Refactored the xmod package to be a parent, beside core. No longer is it a child, it needs room to grow. --- .../bees/alveary/IAlvearyComponentAdvanced.java | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/Java/miscutil/xmod/forestry/bees/alveary/IAlvearyComponentAdvanced.java (limited to 'src/Java/miscutil/xmod/forestry/bees/alveary/IAlvearyComponentAdvanced.java') diff --git a/src/Java/miscutil/xmod/forestry/bees/alveary/IAlvearyComponentAdvanced.java b/src/Java/miscutil/xmod/forestry/bees/alveary/IAlvearyComponentAdvanced.java new file mode 100644 index 0000000000..8383f09f0f --- /dev/null +++ b/src/Java/miscutil/xmod/forestry/bees/alveary/IAlvearyComponentAdvanced.java @@ -0,0 +1,28 @@ +package miscutil.xmod.forestry.bees.alveary; + +import forestry.api.apiculture.IBeeModifier; +import forestry.api.core.IClimateControlled; +import forestry.api.multiblock.IMultiblockComponent; +import forestry.api.multiblock.IMultiblockLogicAlveary; + +public abstract interface IAlvearyComponentAdvanced +extends IMultiblockComponent +{ + @Override + public abstract T getMultiblockLogic(); + + + public static abstract interface FrameHouse + extends IAlvearyComponentAdvanced + { + public abstract void changeClimate(int paramInt, IClimateControlled paramIClimateControlled); + } + + + public static abstract interface BeeModifier + extends IAlvearyComponentAdvanced + { + public abstract IBeeModifier getBeeModifier(); + } + +} -- cgit