20 lines
No EOL
301 B
Java
20 lines
No EOL
301 B
Java
package biomesoplenty;
|
|
|
|
|
|
public class CommonProxy
|
|
{
|
|
// Client stuff
|
|
public void registerRenderers()
|
|
{
|
|
// Nothing here as the server doesn't render graphics!
|
|
}
|
|
|
|
public int addArmor(String armor)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public void spawnParticle(String string, double x, double y, double z)
|
|
{
|
|
}
|
|
} |