/* * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. This program is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * Public License for more details. You should have received a copy of the GNU * Lesser General Public License along with this program. If not, see * <http://www.gnu.org/licenses/> */ package net.slimevoid.library.proxy; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.tileentity.TileEntity; import net.minecraft.world.World; import java.io.File; public class SV_CommonProxy implements ICommonProxy { @Override public String getMinecraftDir() { return "."; } @Override public void registerRenderInformation() { } @Override public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { return null; } @Override public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { return null; } @Override public void registerTileEntitySpecialRenderer(Class<? extends TileEntity> clazz) { } @Override public void registerTickHandlers() { } @Override public void registerEventHandlers() { } @Override public void preInit() { } @Override public void init() { } @Override public void postInit() { } @Override public void registerPacketHandlers() { } @Override public void registerConfigurationProperties(File configFile) { } @Override public boolean isClient(World world) { return false; } }