4
0

reorder object declarations
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2025-12-09 08:03:10 +01:00
parent 1a68ef69cb
commit 36abe3a25d

View File

@@ -56,17 +56,20 @@ local GAME_STATE_INVENTORY_ACTION = 6
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
-- Modules -- Modules
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
-- State Modules (in GAME_STATE order)
local SplashState = {} local SplashState = {}
local IntroState = {} local IntroState = {}
local MenuState = {} local MenuState = {}
local GameState = {} local GameState = {}
local DialogState = {} -- Used for GAME_STATE_DIALOG and GAME_STATE_INVENTORY_ACTION
local InventoryState = {} -- Used for GAME_STATE_INVENTORY
-- Other Modules
local UI = {} local UI = {}
local Input = {} local Input = {}
local InventoryState = {}
local NpcActions = {} local NpcActions = {}
local ItemActions = {} local ItemActions = {}
local MenuActions = {} local MenuActions = {}
local DialogState = {}
local Player = {} local Player = {}
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------