From f357e3a1753c7c542d48bb217d8a2545cb9544c4 Mon Sep 17 00:00:00 2001 From: Jordan Byrne Date: Mon, 8 Jan 2018 19:58:35 +1000 Subject: + 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. --- src/Java/gtPlusPlus/api/interfaces/ITileTooltip.java | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/Java/gtPlusPlus/api/interfaces/ITileTooltip.java (limited to 'src/Java/gtPlusPlus/api') 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(); + +} -- cgit