rename, start to generalize blades-engine
This commit is contained in:
21
projects/iso-rpg-engine/source/Main.hx
Normal file
21
projects/iso-rpg-engine/source/Main.hx
Normal file
@@ -0,0 +1,21 @@
|
||||
package;
|
||||
|
||||
import flixel.FlxGame;
|
||||
import openfl.display.Sprite;
|
||||
import data.blades.ScenData;
|
||||
|
||||
class Main extends Sprite
|
||||
{
|
||||
public function new()
|
||||
{
|
||||
var scenData = new ScenData();
|
||||
scenData.load("Data/corescendata.txt");
|
||||
scenData.load("Data/corescendata2.txt");
|
||||
|
||||
scenData.test();
|
||||
|
||||
|
||||
super();
|
||||
addChild(new FlxGame(0, 0, IsometricMapState));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user