This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |