00001 #ifndef SCORELIST_H 00002 #define SCORELIST_H 00003 00004 class Scorelist { 00005 public: 00006 char name[10][21]; 00007 unsigned level[10]; 00008 unsigned score[10]; 00009 FILE *open_file(char *mode); 00010 void read(); 00011 void write(); 00012 void recalc(char *str); 00013 void update(); 00014 }; 00015 00016 #endif
1.4.2