forked from ReikaKalseki/RotaryCraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommonProxy.java
49 lines (37 loc) · 1.01 KB
/
CommonProxy.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*******************************************************************************
* @author Reika Kalseki
*
* Copyright 2014
*
* All rights reserved.
* Distribution of the software in any form is only allowed with
* explicit, prior permission from the owner.
******************************************************************************/
package Reika.RotaryCraft;
import net.minecraft.world.World;
public class CommonProxy
{
public static int IOGoggles;
public static int NVGoggles;
public static int NVHelmet;
public static int armor;
public static int SteelArmor;
public static int pipeRender;
public static int cubeRender;
public static int connectedRender;
/**
* Client side only register stuff...
*/
public void registerRenderers()
{
//unused server side. -- see ClientProxy for implementation
}
public void addArmorRenders() {}
public World getClientWorld() {
return null;
}
public void registerRenderInformation() {
}
public void registerSounds() {
}
}// End class CommonProxy