sonic-radiance/sonic-radiance.love/game/modules/world/init.lua

10 lines
315 B
Lua

local World3D = require "core.modules.world.world3D"
local RadianceWorld = World3D:extend()
function RadianceWorld:new(scene, maptype, mapname)
local mappath = game.utils.getMapPath(maptype, mapname)
RadianceWorld.super.new(self, scene, "game.modules.world.actors", mappath, maptype)
end
return RadianceWorld