summary refs log tree commit diff stats
path: root/highscore.h
blob: 721b22667c3297345b97300c8683a66b7e16acb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef HIGHSCORE_H
#define HIGHSCORE_H

class Highscore {
	public:
		Highscore(char* name, int level);
		char* getName();
		int getLevel();
		void setRank(int rank);
		int getRank();

	private:
		char* name;
		int level;
		int rank;
};

#endif