spacetea/simulator/consumer.go

8 lines
115 B
Go
Raw Normal View History

2022-05-19 17:09:46 -04:00
package simulator
//Consumer is a game object that consumes resources
type Consumer interface {
Object
Tick()
}