1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-10-01 06:49:05 +00:00
Funkin/source/Main.hx

14 lines
176 B
Haxe
Raw Normal View History

2020-10-03 06:50:15 +00:00
package;
import flixel.FlxGame;
import openfl.display.Sprite;
class Main extends Sprite
{
public function new()
{
super();
addChild(new FlxGame(0, 0, PlayState));
}
}