blob: d8045119dcbd65a25d8b12141321612c47bc3353 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#ifndef __CUBE_H__
#define __CUBE_H__
#define _FILE_OFFSET_BITS 64
#include <math.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <stdarg.h>
#include <limits.h>
#include <assert.h>
#include <time.h>
#ifndef STANDALONE
#include <SDL.h>
#include <SDL_opengl.h>
#endif
#include <enet/enet.h>
#include <zlib.h>
#include "tools.h"
#include "geom.h"
#include "ents.h"
#include "command.h"
#ifndef STANDALONE
#include "glexts.h"
#include "glemu.h"
#endif
#include "iengine.h"
#include "igame.h"
#endif
extern float speedmodifier;
|