equivalent-exchange-3/ee3_common/ee3/common/core/CommonProxy.java
2012-08-25 02:07:59 -04:00

36 lines
889 B
Java

package ee3.common.core;
import net.minecraft.src.EntityPlayer;
import net.minecraft.src.World;
import cpw.mods.fml.common.network.IGuiHandler;
/**
* CommonProxy
*
* The common proxy class between client and server. Client proxy extends this for further client specific functionality
*
* @author pahimar
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
*
*/
public class CommonProxy implements IGuiHandler {
public void registerKeyBindingHandler() { }
public void setKeyBinding(String name, int value) { }
public void registerSoundHandler() { }
public void preloadTextures() { }
@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;
}
}