Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package;
- import openfl.Lib;
- /**
- * ...
- * @author Reka
- */
- class Leaderboard
- {
- public var playerName:String;
- public var playerScore:Int;
- public function new(newName:String, newScore:Int)
- {
- playerName = newName;
- playerScore = newScore;
- }
- }
Add Comment
Please, Sign In to add comment