Little more work on pda lots more to do
This commit is contained in:
parent
95c57bccf0
commit
c6bc7f6fb8
5 changed files with 74 additions and 7 deletions
|
@ -248,7 +248,7 @@ public class GuiHandler implements IGuiHandler {
|
|||
(TileChemicalReactor) world.getTileEntity(x, y, z));
|
||||
} else if (ID == pdaID)
|
||||
{
|
||||
return new GuiPda(player);
|
||||
return new GuiPda(player, new ContainerPda(player));
|
||||
} else if (ID == destructoPackID) {
|
||||
return new GuiDestructoPack(new ContainerDestructoPack(player));
|
||||
} else if (ID == lesuID) {
|
||||
|
|
23
src/main/java/techreborn/client/container/ContainerPda.java
Normal file
23
src/main/java/techreborn/client/container/ContainerPda.java
Normal file
|
@ -0,0 +1,23 @@
|
|||
package techreborn.client.container;
|
||||
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.inventory.Slot;
|
||||
import techreborn.api.recipe.RecipeCrafter;
|
||||
import techreborn.client.SlotOutput;
|
||||
import techreborn.tiles.TileAlloySmelter;
|
||||
|
||||
public class ContainerPda extends TechRebornContainer {
|
||||
|
||||
EntityPlayer player;
|
||||
public ContainerPda(EntityPlayer player)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canInteractWith(EntityPlayer player)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue