summaryrefslogtreecommitdiff
path: root/src/main/java/darkknight/jewelrycraft/thirdparty/IThirdParty.java
blob: 8aaba72e878c1f110b38873b07517c7c6fc88af6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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();
}