Add WIP textured drain block without logic

This commit is contained in:
Justin Vitale 2020-01-04 16:18:34 +11:00
parent a98eff45af
commit 5d89272a10
12 changed files with 81 additions and 1 deletions

View file

@ -0,0 +1,32 @@
package techreborn.blockentity.machine.misc;
import net.minecraft.block.entity.BlockEntityType;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.inventory.Inventory;
import reborncore.api.IListInfoProvider;
import reborncore.api.blockentity.InventoryProvider;
import reborncore.client.containerBuilder.IContainerProvider;
import reborncore.client.containerBuilder.builder.BuiltContainer;
import reborncore.common.blockentity.MachineBaseBlockEntity;
import techreborn.init.TRBlockEntities;
public class DrainBlockEntity extends MachineBaseBlockEntity implements InventoryProvider, IListInfoProvider, IContainerProvider {
public DrainBlockEntity(){
this(TRBlockEntities.DRAIN);
}
public DrainBlockEntity(BlockEntityType<?> blockEntityTypeIn) {
super(blockEntityTypeIn);
}
@Override
public Inventory getInventory() {
return null;
}
@Override
public BuiltContainer createContainer(int syncID, PlayerEntity player) {
return null;
}
}