spacetea/simulator/factory.go

21 lines
422 B
Go
Raw Normal View History

2022-05-17 23:29:59 -04:00
package simulator
//Factory is a game object that can hold resources and produce something
type Factory struct {
Resources map[int]int
Description string
Formula string
}
func (f *Factory) Tick() {
panic("not implemented") // TODO: Implement
}
func (f *Factory) Get() Produce {
panic("not implemented") // TODO: Implement
}
func (f *Factory) String() string {
panic("not implemented") // TODO: Implement
}