Files
BusyRabbit/Content/Lua/Level/LevelGameState.lua

9 lines
192 B
Lua
Raw Normal View History

2025-09-28 01:32:54 +08:00
--- @class LevelGameState
local LevelGameState = {}
function LevelGameState:SetGameMapActor(game_map_actor)
self.GameMapActor = game_map_actor
end
return Class(nil, nil, LevelGameState)