forked from ReikaKalseki/ChromatiCraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChromaCommon.java
More file actions
84 lines (65 loc) · 1.96 KB
/
ChromaCommon.java
File metadata and controls
84 lines (65 loc) · 1.96 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*******************************************************************************
* @author Reika Kalseki
*
* Copyright 2017
*
* All rights reserved.
* Distribution of the software in any form is only allowed with
* explicit, prior permission from the owner.
******************************************************************************/
package Reika.ChromatiCraft;
import net.minecraft.world.World;
public class ChromaCommon {
public static int crystalRender;
public static int runeRender;
public static int crystalStoneRender;
public static int tankRender;
//public static int fiberRender;
public static int treeRender;
public static int lampRender;
public static int relayRender;
public static int glowRender;
public static int vriftRender;
public static int dimgenRender;
public static int glowTreeRender;
public static int colorLockRender;
public static int specialShieldRender;
public static int glassRender;
public static int consoleRender;
public static int fenceRender;
public static int selectiveRender;
public static int lasereffectRender;
public static int rayblendFloorRender;
public static int pistonRender;
public static int artefactRender;
public static int metaAlloyRender;
public static int encrustedRender;
public static int oreRender;
public static int plantRender;
public static int plantRender2;
public static int flowerRender;
public static int sparkleRender;
public static int everfluidRender;
public static int cliffstoneRender;
public static int caveIndicatorRender;
public static int bedrockCrackRender;
public static int armor;
public void registerRenderers()
{
//unused server side. -- see ClientProxy for implementation
}
public void addArmorRenders() {}
public World getClientWorld() {
return null;
}
public void registerRenderInformation() {
}
public void registerSounds() {
}
public void registerKeys() {
}
public void addDonatorRender() {
}
public void logPopupWarning(String msg) {
}
}