10 lines
217 B
Go
10 lines
217 B
Go
|
|
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
|
||
|
|
}
|