blob: bca5b90ecf6eb188cc1334da9efef8aab6459dda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package miscutil.core.interfaces;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ChunkCoordinates;
import net.minecraft.world.World;
public abstract interface IGuiManager extends IGuiManagerMiscUtils{
public abstract ChunkCoordinates getCoordinates();
public abstract World getWorld();
public abstract Object getGui(EntityPlayer paramEntityPlayer, int paramInt);
public abstract Object getContainer(EntityPlayer paramEntityPlayer, int paramInt);
}
|