rename, start to generalize blades-engine

This commit is contained in:
2022-06-07 18:08:01 +00:00
parent b21ce5aa38
commit 40a99dd12b
22 changed files with 9 additions and 9 deletions

View 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));
}
}