Files
dungeon-client/source/Main.hx
Indrajith K L ffd6706cb0 🎉 Initial Commit
* Integrates Colyseus Server
* Implements Basic Player movement
* Player Remove/Update Events
2020-06-29 03:14:32 +05:30

14 lines
176 B
Haxe

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