bring handloose and nat-globelet-playground into CI

This commit is contained in:
2022-09-29 23:46:49 +00:00
parent 8121ae425c
commit 507d267c1f
15 changed files with 5 additions and 3 deletions

View File

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