forked from ReikaKalseki/VoidMonster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVoidCommon.java
42 lines (32 loc) · 899 Bytes
/
VoidCommon.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
/*******************************************************************************
* @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.VoidMonster;
import net.minecraft.world.World;
public class VoidCommon {
public static int tileRender;
public static int wireRender;
/**
* 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() {
// TODO Auto-generated method stub
}
public void registerSounds() {
// TODO Auto-generated method stub
}
}