summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/Scorelist.h
blob: 0c8b0dd8a978fcc0407c99e231dd44e5c6f64a26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SCORELIST_H
#define SCORELIST_H

class Scorelist {
public:
	char name[10][21];
	unsigned level[10];
	unsigned score[10];
	FILE *open_file(char *mode);
	void read();
	void write();
	void recalc(char *str);
	void update();
};

#endif