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

12 lines
147 B
Go

package block
type Bell struct {
Attachment string
Facing string
Powered string
}
func (Bell) ID() string {
return "minecraft:bell"
}