1
0
mirror of https://github.com/Melon-Bread/Pet.GB synced 2024-11-24 20:58:19 -05:00
Pet.GB/source/Main.hx
2016-10-03 20:43:09 -04:00

16 lines
196 B
Haxe

package;
import flixel.FlxGame;
import openfl.Lib;
import openfl.display.Sprite;
class Main extends Sprite
{
public function new()
{
super();
addChild(new FlxGame(0, 0, MenuState));
}
}