mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-03-21 17:39:20 +00:00
14 lines
176 B
Haxe
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));
|
|
}
|
|
}
|