summaryrefslogtreecommitdiff
path: root/src/main/java/darkknight/jewelrycraft/thirdparty/IThirdParty.java
blob: fe555ca6fcbd51fd58664ed77c4fee3d7c7ac870 (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();
}