update level/block

This commit is contained in:
Tnze
2023-06-28 19:59:55 +08:00
parent 191299a457
commit f919d93544
6 changed files with 127 additions and 83 deletions

View File

@ -7,46 +7,48 @@ type Entity interface {
}
type (
FurnaceEntity struct{}
ChestEntity struct{}
TrappedChestEntity struct{}
EnderChestEntity struct{}
JukeboxEntity struct{}
DispenserEntity struct{}
DropperEntity struct{}
SignEntity struct{}
HangingSignEntity struct{}
MobSpawnerEntity struct{}
PistonEntity struct{}
BrewingStandEntity struct{}
EnchantingTableEntity struct{}
EndPortalEntity struct{}
BeaconEntity struct{}
SkullEntity struct{}
DaylightDetectorEntity struct{}
HopperEntity struct{}
ComparatorEntity struct{}
BannerEntity struct{}
StructureBlockEntity struct{}
EndGatewayEntity struct{}
CommandBlockEntity struct{}
ShulkerBoxEntity struct{}
BedEntity struct{}
ConduitEntity struct{}
BarrelEntity struct{}
SmokerEntity struct{}
BlastFurnaceEntity struct{}
LecternEntity struct{}
BellEntity struct{}
JigsawEntity struct{}
CampfireEntity struct{}
BeehiveEntity struct{}
SculkSensorEntity struct{}
SculkCatalystEntity struct{}
SculkShriekerEntity struct{}
ChiseledBookshelfEntity struct{}
SuspiciousSandEntity struct{}
DecoratedPotEntity struct{}
FurnaceEntity struct{}
ChestEntity struct{}
TrappedChestEntity struct{}
EnderChestEntity struct{}
JukeboxEntity struct{}
DispenserEntity struct{}
DropperEntity struct{}
SignEntity struct{}
HangingSignEntity struct{}
MobSpawnerEntity struct{}
PistonEntity struct{}
BrewingStandEntity struct{}
EnchantingTableEntity struct{}
EndPortalEntity struct{}
BeaconEntity struct{}
SkullEntity struct{}
DaylightDetectorEntity struct{}
HopperEntity struct{}
ComparatorEntity struct{}
BannerEntity struct{}
StructureBlockEntity struct{}
EndGatewayEntity struct{}
CommandBlockEntity struct{}
ShulkerBoxEntity struct{}
BedEntity struct{}
ConduitEntity struct{}
BarrelEntity struct{}
SmokerEntity struct{}
BlastFurnaceEntity struct{}
LecternEntity struct{}
BellEntity struct{}
JigsawEntity struct{}
CampfireEntity struct{}
BeehiveEntity struct{}
SculkSensorEntity struct{}
CalibratedSculkSensorEntity struct{}
SculkCatalystEntity struct{}
SculkShriekerEntity struct{}
ChiseledBookshelfEntity struct{}
SuspiciousSandEntity struct{}
BrushableBlockEntity struct{}
DecoratedPotEntity struct{}
)
type EntityType int32