spacetea/simulator/producer.go

17 lines
258 B
Go

package simulator
//Producer is a game object that producers a material
type Producer interface {
Object
Tick()
Get() Produce
String() string
Describe() string
}
//Produce is the result of a producer
type Produce struct {
Kind itemType
Value int
}