21 lines
422 B
Go
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
|
|
}
|