mirror of
https://github.com/Melon-Bread/Pet.GB
synced 2024-11-25 05:08:18 -05:00
16 lines
196 B
Haxe
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));
|
||
|
}
|
||
|
}
|