aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/api
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-01-08 19:58:35 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-01-08 19:58:35 +1000
commitf357e3a1753c7c542d48bb217d8a2545cb9544c4 (patch)
tree940bdbf5bfafc6faa7ccbc810f6b2e59367aca9b /src/Java/gtPlusPlus/api
parent2b77e70b058ed0a82b3a4a163a04ec5d9ed00c67 (diff)
downloadGT5-Unofficial-f357e3a1753c7c542d48bb217d8a2545cb9544c4.tar.gz
GT5-Unofficial-f357e3a1753c7c542d48bb217d8a2545cb9544c4.tar.bz2
GT5-Unofficial-f357e3a1753c7c542d48bb217d8a2545cb9544c4.zip
+ Added an interface to make tooltips on tile entities more flexible.
+ Actually added the recipe for the Mining Explosives this time. + Attempted to add a framework for packet handling.
Diffstat (limited to 'src/Java/gtPlusPlus/api')
-rw-r--r--src/Java/gtPlusPlus/api/interfaces/ITileTooltip.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/api/interfaces/ITileTooltip.java b/src/Java/gtPlusPlus/api/interfaces/ITileTooltip.java
new file mode 100644
index 0000000000..08866c2712
--- /dev/null
+++ b/src/Java/gtPlusPlus/api/interfaces/ITileTooltip.java
@@ -0,0 +1,7 @@
+package gtPlusPlus.api.interfaces;
+
+public interface ITileTooltip {
+
+ public abstract int getTooltipID();
+
+}