summaryrefslogtreecommitdiff
path: root/src/main/java/darkknight/jewelrycraft/thirdparty/IThirdParty.java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-05-07 13:34:21 +0100
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-05-07 13:34:21 +0100
commitc5e04f2c8e0c5393d9a5ef63a87ae4f0094af301 (patch)
tree170a49181f336842c82cf6e12f63f7e4b8e2cad1 /src/main/java/darkknight/jewelrycraft/thirdparty/IThirdParty.java
parent208b1f1e0d5faf601b53818b04f6699b2e6cb6bc (diff)
- 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
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/thirdparty/IThirdParty.java')
-rw-r--r--src/main/java/darkknight/jewelrycraft/thirdparty/IThirdParty.java23
1 files changed, 23 insertions, 0 deletions
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