Files
mc/server/item/bowl.go
T

17 lines
293 B
Go
Raw Permalink Normal View History

2026-07-09 08:33:57 +08:00
package item
import "time"
// Bowl is a container that can hold certain foods.
type Bowl struct{}
// FuelInfo ...
func (Bowl) FuelInfo() FuelInfo {
return newFuelInfo(time.Second * 10)
}
// EncodeItem ...
func (Bowl) EncodeItem() (name string, meta int16) {
return "minecraft:bowl", 0
}