20 lines
306 B
Go
20 lines
306 B
Go
package config
|
|
|
|
import "time"
|
|
|
|
const (
|
|
Stop = iota
|
|
East
|
|
West
|
|
South
|
|
North
|
|
All
|
|
)
|
|
|
|
const PLAYERSPEED int = 5
|
|
const PARTICLE_LOOPWAIT time.Duration = 250 * time.Millisecond
|
|
const LEVEL_END_WAIT time.Duration = 500 * time.Millisecond
|
|
const version string = "1.1.0"
|
|
|
|
var VERSION string // maintained by -x
|