~ubuntu-branches/ubuntu/raring/xbill/raring

« back to all changes in this revision

Viewing changes to Scorelist.h

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Bridgett
  • Date: 2001-06-24 22:44:40 UTC
  • Revision ID: james.westby@ubuntu.com-20010624224440-r8kbgt5ae7q1230g
Tags: upstream-2.0
ImportĀ upstreamĀ versionĀ 2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SCORELIST_H
 
2
#define SCORELIST_H
 
3
 
 
4
class Scorelist {
 
5
public:
 
6
        char name[10][21];
 
7
        unsigned level[10];
 
8
        unsigned score[10];
 
9
        FILE *open_file(char *mode);
 
10
        void read();
 
11
        void write();
 
12
        void recalc(char *str);
 
13
        void update();
 
14
};
 
15
 
 
16
#endif