Skip to content

Instantly share code, notes, and snippets.

public class MyBlockEntity extends BaseContainerBlockEntity implements Container {
private boolean property;
public MyBlockEntity(BlockPos pos, BlockState blockState) {
super(ModBlockEntities.MY_BLOCK_ENTITY.get(), pos, blockState);
this.property = false;
}
@Override