2024-02-06 15:26:20 +01:00
|
|
|
package config
|
|
|
|
|
|
2024-02-12 17:27:52 +01:00
|
|
|
import "time"
|
|
|
|
|
|
2024-02-06 15:26:20 +01:00
|
|
|
const (
|
|
|
|
|
Stop = iota
|
|
|
|
|
East
|
|
|
|
|
West
|
|
|
|
|
South
|
|
|
|
|
North
|
|
|
|
|
)
|
2024-02-11 14:24:30 +01:00
|
|
|
|
|
|
|
|
const PLAYERSPEED int = 4
|
2024-02-12 17:27:52 +01:00
|
|
|
const PARTICLE_LOOPWAIT time.Duration = 250 * time.Millisecond
|
2024-02-13 18:15:52 +01:00
|
|
|
const LEVEL_END_WAIT time.Duration = 500 * time.Millisecond
|