10 lines
281 B
Java
10 lines
281 B
Java
package ru.betterend.blocks.entities;
|
|
|
|
import net.minecraft.block.entity.ChestBlockEntity;
|
|
import ru.betterend.registry.BlockEntityRegistry;
|
|
|
|
public class EChestBlockEntity extends ChestBlockEntity {
|
|
public EChestBlockEntity() {
|
|
super(BlockEntityRegistry.CHEST);
|
|
}
|
|
}
|