summary refs log tree commit diff stats
path: root/highscore.h
diff options
context:
space:
mode:
Diffstat (limited to 'highscore.h')
-rw-r--r--highscore.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/highscore.h b/highscore.h index 721b226..f7ecacc 100644 --- a/highscore.h +++ b/highscore.h
@@ -2,17 +2,17 @@
2#define HIGHSCORE_H 2#define HIGHSCORE_H
3 3
4class Highscore { 4class Highscore {
5 public: 5 public:
6 Highscore(char* name, int level); 6 Highscore(char* name, int level);
7 char* getName(); 7 char* getName();
8 int getLevel(); 8 int getLevel();
9 void setRank(int rank); 9 void setRank(int rank);
10 int getRank(); 10 int getRank();
11 11
12 private: 12 private:
13 char* name; 13 char* name;
14 int level; 14 int level;
15 int rank; 15 int rank;
16}; 16};
17 17
18#endif 18#endif