spacetea/simulator/factory.go
2022-05-17 23:29:59 -04:00

21 lines
422 B
Go

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
}