BiomesOPlenty/src/minecraft/biomesoplenty/CommonProxy.java

19 lines
299 B
Java
Raw Normal View History

2013-05-03 13:00:44 +00:00
package biomesoplenty;
2013-05-31 10:34:02 +00:00
2013-07-01 00:31:34 +00:00
public class CommonProxy
{
2013-05-31 10:34:02 +00:00
// Client stuff
public void registerRenderers() {
// Nothing here as the server doesn't render graphics!
}
public int addArmor(String armor)
{
return 0;
}
2013-05-13 08:20:06 +00:00
public void spawnParticle(String string, double x, double y, double z)
{
}
2013-05-03 13:00:44 +00:00
}