mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-14 19:25:16 -05: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));
|
||
|
}
|
||
|
}
|