Files
zire/pasture/sheep.go

14 lines
172 B
Go
Raw Normal View History

2026-03-06 00:07:44 +08:00
package pasture
type Sheep struct {
lines string
}
func (s *Sheep) Sound() string {
return s.lines
}
func NewSheep(line string) *Sheep {
return &Sheep{lines: line}
}