reorder object declarations

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
--------------------------------------------------------------------------------
-- State Modules (in GAME_STATE order)
local SplashState = {}
local IntroState = {}
local MenuState = {}
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 Input = {}
local InventoryState = {}
local NpcActions = {}
local ItemActions = {}
local MenuActions = {}
local DialogState = {}
local Player = {}
--------------------------------------------------------------------------------