handloose make action arrows

This commit is contained in:
2022-01-28 11:15:25 -07:00
parent ed32957755
commit 5803b77c3e
4 changed files with 39 additions and 18 deletions

View File

@@ -1,5 +1,6 @@
package;
import flixel.FlxG;
import flixel.FlxGame;
import openfl.display.Sprite;
@@ -9,5 +10,8 @@ class Main extends Sprite
{
super();
addChild(new FlxGame(0, 0, TypingState, 1, 60, 60, true));
var t:TypingState = cast FlxG.state;
trace(Sys.args()[0]);
t.setModel(new DocumentModel(Sys.args()[0]));
}
}