9fec41f906
Renamed IDimDoor.placeDimDoor() to placeLink(), since that's what it's actually being used for in our doors. Saying it places the door itself is confusing.
13 lines
309 B
Java
13 lines
309 B
Java
package StevenDimDoors.mod_pocketDim.blocks;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.world.World;
|
|
|
|
public interface IDimDoor
|
|
{
|
|
public void enterDimDoor(World world, int x, int y, int z, Entity entity);
|
|
|
|
public void placeLink(World world, int x, int y, int z);
|
|
|
|
public int getDrops();
|
|
}
|