2013-12-21 23:16:55 +01:00
|
|
|
package com.pahimar.ee3.proxy;
|
|
|
|
|
|
|
|
public interface IProxy
|
|
|
|
{
|
2014-04-11 01:59:04 +02:00
|
|
|
public abstract void registerTileEntities();
|
|
|
|
|
|
|
|
public abstract void initRenderingAndTextures();
|
2014-05-23 00:35:31 +02:00
|
|
|
|
|
|
|
public abstract void registerEventHandlers();
|
|
|
|
|
|
|
|
public abstract void registerKeybindings();
|
2014-07-21 20:47:00 +02:00
|
|
|
|
|
|
|
public abstract void playSound(String soundName, float xCoord, float yCoord, float zCoord, float volume, float pitch);
|
2013-12-21 23:16:55 +01:00
|
|
|
}
|