aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/api/interfaces
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-04-20 00:14:08 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-04-20 00:14:08 +1000
commit50db10656a85c8b4e64b5bcdaa497b933b4e6196 (patch)
treeb11c9b7f0f30b8f7ba95df726aa73b98dc99d667 /src/Java/gtPlusPlus/api/interfaces
parentada14a51bd79b68ad37ff69ef0ad69610b7c73a6 (diff)
downloadGT5-Unofficial-50db10656a85c8b4e64b5bcdaa497b933b4e6196.tar.gz
GT5-Unofficial-50db10656a85c8b4e64b5bcdaa497b933b4e6196.tar.bz2
GT5-Unofficial-50db10656a85c8b4e64b5bcdaa497b933b4e6196.zip
^ Version bump to 1.7.0-pre11-final.
$ Fixed many .08 compat issues stemming from use of newer NEI handler features in .09. $ Redid a lot of GT_Recipe and Recipe_GT handling. $ Fix to Adv. Vacuum Freezer recipe handling. $ Fixed NEI not loading Multiblock Handler. $ Fixed various crashed from NEI.
Diffstat (limited to 'src/Java/gtPlusPlus/api/interfaces')
-rw-r--r--src/Java/gtPlusPlus/api/interfaces/IComparableRecipe.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/api/interfaces/IComparableRecipe.java b/src/Java/gtPlusPlus/api/interfaces/IComparableRecipe.java
new file mode 100644
index 0000000000..5d79fd8a51
--- /dev/null
+++ b/src/Java/gtPlusPlus/api/interfaces/IComparableRecipe.java
@@ -0,0 +1,8 @@
+package gtPlusPlus.api.interfaces;
+
+import gregtech.api.util.GT_Recipe;
+import gregtech.api.util.Recipe_GT;
+
+public interface IComparableRecipe extends Comparable<GT_Recipe>{
+
+}