Advertisement
Guest User

Leaderboard

a guest
Aug 17th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Haxe 0.26 KB | None | 0 0
  1. package;
  2.  
  3. import openfl.Lib;
  4.  
  5. /**
  6.  * ...
  7.  * @author Reka
  8.  */
  9. class Leaderboard
  10. {
  11.     public var playerName:String;
  12.     public var playerScore:Int;
  13.  
  14.     public function new(newName:String, newScore:Int)
  15.     {
  16.         playerName = newName;
  17.         playerScore = newScore;
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement