From c5e04f2c8e0c5393d9a5ef63a87ae4f0094af301 Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Thu, 7 May 2015 13:34:21 +0100 Subject: - Added EE3 EMC values, thank you to MineMarteen for providing the ThirdPartyManager code :) - Working on making it possible to translate every part of the mod - Created an interface modders can use to make an item wearable in the jewelry inventory and have special effects --- .../jewelrycraft/thirdparty/IThirdParty.java | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/main/java/darkknight/jewelrycraft/thirdparty/IThirdParty.java (limited to 'src/main/java/darkknight/jewelrycraft/thirdparty/IThirdParty.java') diff --git a/src/main/java/darkknight/jewelrycraft/thirdparty/IThirdParty.java b/src/main/java/darkknight/jewelrycraft/thirdparty/IThirdParty.java new file mode 100644 index 0000000..8aaba72 --- /dev/null +++ b/src/main/java/darkknight/jewelrycraft/thirdparty/IThirdParty.java @@ -0,0 +1,23 @@ +package darkknight.jewelrycraft.thirdparty; + +/** + * @author MineMarteen from Pneumaticraft + */ +public interface IThirdParty{ + + public void preInit(); + + public void init(); + + public void postInit(); + + /** + * Gets called from the ClientProxy in the preInit. + */ + public void clientSide(); + + /** + * Gets called from the ClientProxy in the Init. + */ + public void clientInit(); +} \ No newline at end of file -- cgit v1.2.3