Files
go-mc/level/block/lectern.go
2022-03-09 10:47:46 +08:00

12 lines
150 B
Go

package block
type Lectern struct {
Facing string
Has_book string
Powered string
}
func (Lectern) ID() string {
return "minecraft:lectern"
}