-
Notifications
You must be signed in to change notification settings - Fork 25
/
CommonProxy.java
48 lines (32 loc) · 970 Bytes
/
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
/*******************************************************************************
* @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.ReactorCraft;
import net.minecraft.world.World;
import Reika.DragonAPI.Instantiable.IO.SoundLoader;
import Reika.ReactorCraft.Registry.ReactorSounds;
public class CommonProxy {
public static int lineRender;
public static int lampRender;
public static int hazmat;
protected static final SoundLoader sounds = new SoundLoader(ReactorSounds.class);
public void registerRenderers()
{
}
public void addArmorRenders() {}
public World getClientWorld() {
return null;
}
public void registerRenderInformation() {
}
public void registerSounds() {
}
public void loadDonatorRender() {
}
}