equivalent-exchange-3/src/main/java/com/pahimar/ee3/proxy/ServerProxy.java

46 lines
1 KiB
Java
Raw Normal View History

2013-12-21 23:16:55 +01:00
package com.pahimar.ee3.proxy;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
import net.minecraftforge.common.util.ForgeDirection;
public class ServerProxy extends CommonProxy
2013-12-21 23:16:55 +01:00
{
2014-10-09 22:13:06 +02:00
@Override
public ClientProxy getClientProxy()
{
return null;
}
@Override
public void initRenderingAndTextures()
{
// NOOP
}
2014-05-23 00:35:31 +02:00
@Override
public void registerKeybindings()
{
// NOOP
}
@Override
public void playSound(String soundName, float xCoord, float yCoord, float zCoord, float volume, float pitch)
{
// NOOP
}
@Override
public void spawnParticle(String particleName, double xCoord, double yCoord, double zCoord, double xVelocity, double yVelocity, double zVelocity)
{
// NOOP
}
@Override
public void transmuteBlock(ItemStack itemStack, EntityPlayer player, World world, int x, int y, int z, ForgeDirection sideHit)
{
// NOOP
}
2013-12-21 23:16:55 +01:00
}