1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-10-07 10:08:56 +00:00
Funkin/source/Main.hx
Cameron Taylor 303c9d14aa INIT COMMIT
2020-10-02 23:50:15 -07:00

14 lines
176 B
Haxe

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