mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 08:07:54 -05:00
18 lines
267 B
Haxe
18 lines
267 B
Haxe
package;
|
|
|
|
import flixel.FlxGame;
|
|
import openfl.display.FPS;
|
|
import openfl.display.Sprite;
|
|
|
|
class Main extends Sprite
|
|
{
|
|
public function new()
|
|
{
|
|
super();
|
|
addChild(new FlxGame(0, 0, FreeplayState));
|
|
|
|
#if !mobile
|
|
addChild(new FPS(10, 3, 0xFFFFFF));
|
|
#end
|
|
}
|
|
}
|