summary refs log tree commit diff stats
path: root/highscore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'highscore.cpp')
-rw-r--r--highscore.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/highscore.cpp b/highscore.cpp deleted file mode 100644 index eefe058..0000000 --- a/highscore.cpp +++ /dev/null
@@ -1,14 +0,0 @@
1#include "highscore.h"
2
3Highscore::Highscore(char* name, int level) {
4 this->name = name;
5 this->level = level;
6}
7
8char* Highscore::getName() { return name; }
9
10int Highscore::getLevel() { return level; }
11
12void Highscore::setRank(int rank) { this->rank = rank; }
13
14int Highscore::getRank() { return rank; }