diff options
author | Jordan Byrne <draknyte1@hotmail.com> | 2018-01-08 19:58:35 +1000 |
---|---|---|
committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-01-08 19:58:35 +1000 |
commit | f357e3a1753c7c542d48bb217d8a2545cb9544c4 (patch) | |
tree | 940bdbf5bfafc6faa7ccbc810f6b2e59367aca9b /src/Java/gtPlusPlus/api/interfaces | |
parent | 2b77e70b058ed0a82b3a4a163a04ec5d9ed00c67 (diff) | |
download | GT5-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/interfaces')
-rw-r--r-- | src/Java/gtPlusPlus/api/interfaces/ITileTooltip.java | 7 |
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(); + +} |