Files
go-mc/data/entity/entity.go
2025-06-16 12:46:46 +08:00

14 lines
232 B
Go

package entity
type Entity interface {
ID() string
Width() float32
Height() float32
}
// This file stores all possible block states into a TAG_List with gzip compressed.
//
//go:generate go run ./generator/main.go
type ID int