powerconverters/src/main/java/covers1624/powerconverters/proxy/IPCProxy.java
2023-06-16 22:17:05 +02:00

13 lines
249 B
Java

package covers1624.powerconverters.proxy;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
public interface IPCProxy {
void initRendering();
EntityPlayer getClientPlayer();
World getClientWorld();
}