Started work on reactor.
This commit is contained in:
parent
19d269b1de
commit
100293fb8e
4 changed files with 94 additions and 0 deletions
|
@ -0,0 +1,18 @@
|
|||
package techreborn.client.container;
|
||||
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import reborncore.common.container.RebornContainer;
|
||||
import techreborn.tiles.fusionReactor.TileEntityFustionController;
|
||||
|
||||
|
||||
public class ContainerFustionReactor extends RebornContainer {
|
||||
public ContainerFustionReactor(TileEntityFustionController tileEntityFustionController,
|
||||
EntityPlayer player) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canInteractWith(EntityPlayer player) {
|
||||
return true;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue