17 lines
235 B
Go
17 lines
235 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
|