Files
go-mc/level/block/yellow_bed.go
2022-03-09 10:47:46 +08:00

12 lines
157 B
Go

package block
type YellowBed struct {
Facing string
Occupied string
Part string
}
func (YellowBed) ID() string {
return "minecraft:yellow_bed"
}