Files
dungeon-client/source/Player.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
211 B
Haxe

package;
import flixel.FlxSprite;
import flixel.util.FlxColor;
class Player extends FlxSprite
{
public function new(x:Float = 0, y:Float = 0)
{
super(x, y);
loadGraphic("assets/images/player.png");
}
}