Organizing flixel projects

This commit is contained in:
2021-01-02 19:19:14 -07:00
parent 45a0351387
commit a70e17dd79
17 changed files with 188 additions and 0 deletions

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