9 lines
91 B
Go
9 lines
91 B
Go
package simulator
|
|
|
|
//Tech is a tech level
|
|
type Tech int
|
|
|
|
const (
|
|
techPulper Tech = iota
|
|
)
|