-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.lua
More file actions
36 lines (30 loc) · 693 Bytes
/
game.lua
File metadata and controls
36 lines (30 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---@return table
local game = {
isPaused = false,
isPauseDelay = false,
-- incomplete for now
isCountdown = true,
cTimer = 0,
-- countdown length
cTarget = 3,
countA = 1,
--TODO: Use corutines for saving function?
loadingTxt = "loading..",
isQRestart = false,
isFail = false,
isHScore = false,
isLoading = false,
useHold = true,
useSonicDrop = false,
useMoveReset = true,
showFailColors = false,
isGravityInc = true,
isInstantGrav = false,
showGoalLines = true,
noGrav = false,
statsIndex = 0, -- 0, 1, 2
-- for 40 lines (txt for now)
is40LClr = false,
target = 40,
}
return game