Move all engine stuff to GoRetro. Still many interactions between game and engine code that there should not be.

This commit is contained in:
stevenhowes
2022-01-03 22:13:34 +00:00
commit 4d1ab58ca4
19 changed files with 976 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
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