🎉 Initial Commit

* Integrates Colyseus Server
* Implements Basic Player movement
* Player Remove/Update Events
This commit is contained in:
Indrajith K L
2020-06-29 03:14:32 +05:30
commit ffd6706cb0
18 changed files with 302 additions and 0 deletions

13
source/Player.hx Normal file
View File

@@ -0,0 +1,13 @@
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");
}
}