🎉 Initial Commit
* Integrates Colyseus Server * Implements Basic Player movement * Player Remove/Update Events
This commit is contained in:
13
source/Player.hx
Normal file
13
source/Player.hx
Normal 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");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user