10 lines
104 B
Go
10 lines
104 B
Go
package block
|
|
|
|
type Cake struct {
|
|
Bites string
|
|
}
|
|
|
|
func (Cake) ID() string {
|
|
return "minecraft:cake"
|
|
}
|