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,16 @@
package;
import flixel.FlxState;
class PlayState extends FlxState
{
override public function create()
{
super.create();
}
override public function update(elapsed:Float)
{
super.update(elapsed);
}
}