mirror of
https://github.com/stevenhowes/GoRetro.git
synced 2026-05-26 15:53:31 +01:00
18 lines
233 B
Go
18 lines
233 B
Go
package GoRetro
|
|
|
|
import "time"
|
|
|
|
const (
|
|
ScreenWidth = 1024
|
|
ScreenHeight = 768
|
|
|
|
TargetTicksPerSecond = 60
|
|
DebugStatePrintSeconds = 1
|
|
|
|
dataDir = "data/"
|
|
)
|
|
|
|
var Delta float64
|
|
var LastDebugStatePrint time.Time
|
|
var DebugTick bool
|