Files
BusyRabbit/Content/Lua/Level/LevelGameState.lua
2025-09-28 01:32:54 +08:00

9 lines
192 B
Lua

--- @class LevelGameState
local LevelGameState = {}
function LevelGameState:SetGameMapActor(game_map_actor)
self.GameMapActor = game_map_actor
end
return Class(nil, nil, LevelGameState)