mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
12 lines
379 B
Java
12 lines
379 B
Java
package com.hbm.tileentity;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.inventory.Container;
|
|
import net.minecraft.world.World;
|
|
|
|
public interface IGUIProvider {
|
|
|
|
public Container provideContainer(int ID, EntityPlayer player, World world, int x, int y, int z);
|
|
public Object provideGUI(int ID, EntityPlayer player, World world, int x, int y, int z);
|
|
}
|