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

10 lines
104 B
Go

package block
type Cake struct {
Bites string
}
func (Cake) ID() string {
return "minecraft:cake"
}