118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
scoreLines = [[OFMutableArray alloc] init];
[scoreLines addObject:line];
menumanual(0, scoreLines.count - 1, line);
}
static const int maxTeams = 4;
static OFString *teamName[maxTeams];
static int teamScore[maxTeams];
static size_t teamsUsed;
void
addteamscore(DynamicEntity *d)
{
|
|
|
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
scoreLines = [[OFMutableArray alloc] init];
[scoreLines addObject:line];
menumanual(0, scoreLines.count - 1, line);
}
#define maxTeams 4
static OFString *teamName[maxTeams];
static int teamScore[maxTeams];
static size_t teamsUsed;
void
addteamscore(DynamicEntity *d)
{
|