kiss new-flixel-project

This commit is contained in:
2022-03-28 16:39:28 -06:00
parent 142c54bf04
commit a7c54de1fb
14 changed files with 183 additions and 0 deletions

13
template/source/Main.hx Normal file
View File

@@ -0,0 +1,13 @@
package;
import flixel.FlxGame;
import openfl.display.Sprite;
class Main extends Sprite
{
public function new()
{
super();
addChild(new FlxGame(0, 0, PlayState));
}
}