Files

10 lines
194 B
Go
Raw Permalink Normal View History

2026-07-09 08:33:57 +08:00
package item
// Clock is used to measure and display in-game time.
type Clock struct{}
// EncodeItem ...
func (w Clock) EncodeItem() (name string, meta int16) {
return "minecraft:clock", 0
}