summary refs log tree commit diff stats
path: root/highscore.cpp
blob: 6811fa839d54ddd17dceeefdb3e45a2ab87d7e1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "includes.h"

Highscore::Highscore(char* name, int level)
{
	this->name = name;
	this->level = level;
}

char* Highscore::getName()
{
	return name;
}

int Highscore::getLevel()
{
	return level;
}

void Highscore::setRank(int rank)
{
	this->rank = rank;
}

int Highscore::getRank()
{
	return rank;
}