mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
16 lines
427 B
Java
16 lines
427 B
Java
package com.hbm.blocks;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.world.World;
|
|
|
|
/**
|
|
* Custom handling that tells TileEntityProxyBase where the core for a given proxy block is.
|
|
* BlockDummyable doesn't implement this since it already has its own standardized core finding code.
|
|
*
|
|
* @author hbm
|
|
*/
|
|
public interface IProxyController {
|
|
|
|
public TileEntity getCore(World world, int x, int y, int z);
|
|
}
|