BiomesOPlenty/common/biomesoplenty/CommonProxy.java

20 lines
301 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()
{
2013-05-31 10:34:02 +00:00
// 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
}