Cleaned up door code

More to come, but this helps a little. Should make changing dim door
behavior much easier.
This commit is contained in:
StevenRS11
2013-09-06 02:07:47 -04:00
parent 23efc90765
commit 6512327ee8
7 changed files with 615 additions and 575 deletions

View File

@@ -0,0 +1,13 @@
package StevenDimDoors.mod_pocketDim.blocks;
import net.minecraft.entity.Entity;
import net.minecraft.world.World;
public interface IDDoorLogic
{
public void enterDimDoor(World world, int x, int y, int z, Entity entity);
public void placeDimDoor(World world, int x, int y, int z);
public int getDrops();
}