Files
raw-haxe-game/source/scenes/Level1.hx
Indrajith K L 6d82254873 Map Editor Changes
* Removed Ogmo and replaced with Ldtk.
* TODO - Level Transitions
2022-04-29 02:27:58 +05:30

29 lines
430 B
Haxe

package scenes;
import core.GameMap;
import core.LevelBase;
class Level1 extends LevelBase
{
var map:GameMap;
var _currentLevel:GameMap_Level;
public function new()
{
createTransition();
map = new GameMap();
_currentLevel = map.all_levels.Level_0;
super(_currentLevel);
}
override public function create()
{
super.create();
}
override public function update(elapsed:Float)
{
super.update(elapsed);
}
}