1
2
3
4
5
6
7
8
9
10
11
12
|
// clientgame.cpp: core game related stuff
#include "cube.h"
#import "DynamicEntity.h"
#import "OFString+Cube.h"
int nextmode = 0; // nextmode becomes gamemode after next map load
VAR(gamemode, 1, 0, 0);
void
mode(int n)
|
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// clientgame.cpp: core game related stuff
#include "cube.h"
#import "DynamicEntity.h"
#import "Entity.h"
#import "OFString+Cube.h"
int nextmode = 0; // nextmode becomes gamemode after next map load
VAR(gamemode, 1, 0, 0);
void
mode(int n)
|