1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-11 20:57:20 +00:00
Funkin/source/Main.hx
Cameron Taylor 38802b333c 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));
}
}