mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-01 04:14:47 +00:00
19 lines
264 B
Haxe
19 lines
264 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, TitleState));
|
|
|
|
#if !mobile
|
|
addChild(new FPS(10, 3, 0xFFFFFF));
|
|
#end
|
|
}
|
|
}
|