File: Scorelist.h

package info (click to toggle)
xbill 2.0-9
  • links: PTS
  • area: main
  • in suites: slink
  • size: 528 kB
  • ctags: 339
  • sloc: cpp: 1,803; makefile: 38; sh: 21
file content (16 lines) | stat: -rw-r--r-- 240 bytes parent folder | download | duplicates (4)
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