mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-16 11:53:45 +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));
|
|
}
|
|
}
|