Player.as 262 B

1234567891011121314151617181920
  1. class Player
  2. {
  3. int score;
  4. String name;
  5. uint nodeID;
  6. Connection@ connection;
  7. Controls lastControls;
  8. Player()
  9. {
  10. score = 0;
  11. nodeID = 0;
  12. }
  13. }
  14. class HiscoreEntry
  15. {
  16. int score;
  17. String name;
  18. }