Files

10 lines
217 B
Go
Raw Permalink Normal View History

2026-07-09 08:33:57 +08:00
package item
// Leather is an animal skin used to make item frames, armour and books.
type Leather struct{}
// EncodeItem ...
func (Leather) EncodeItem() (name string, meta int16) {
return "minecraft:leather", 0
}