Urho3D/bin/Data/Scripts/NinjaSnowWar/Player.as
2015-01-18 21:31:13 +08:00

21 lines
262 B
ActionScript

class Player
{
int score;
String name;
uint nodeID;
Connection@ connection;
Controls lastControls;
Player()
{
score = 0;
nodeID = 0;
}
}
class HiscoreEntry
{
int score;
String name;
}