17 lines
458 B
Lua
17 lines
458 B
Lua
local ParentWorld = require "game.modules.world.parent"
|
|
local BattleWorld = ParentWorld:extend()
|
|
|
|
local customMap = require "game.modules.world.maps"
|
|
|
|
function BattleWorld:new(scene, mapname)
|
|
local mappath = game.utils.getMapPath("battle", mapname)
|
|
BattleWorld.super.new(self, scene, "battle", mapname)
|
|
|
|
self.mapname = mapname
|
|
end
|
|
|
|
function BattleWorld:createMapController()
|
|
customMap.Battle(self, self.maptype, self.mapname)
|
|
end
|
|
|
|
return BattleWorld
|