diff options
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/thirdparty/IThirdParty.java')
| -rw-r--r-- | src/main/java/darkknight/jewelrycraft/thirdparty/IThirdParty.java | 23 |
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 |
