Another file now compiles.
This commit is contained in:
parent
8b4a564235
commit
fd8ed25d23
3 changed files with 11 additions and 6 deletions
|
@ -10,13 +10,12 @@
|
|||
|
||||
#include "kshape.h"
|
||||
#include "kzsort.h"
|
||||
#include "frustrum.h"
|
||||
#include "frustum.h"
|
||||
#include "krender.h"
|
||||
#include "vision.h"
|
||||
#include "lighting.h"
|
||||
#include "weapons.h"
|
||||
#include "sfx.h"
|
||||
#include "smacker.h"
|
||||
/* character extents data so you know where the player's eyes are */
|
||||
#include "extents.h"
|
||||
#include "avp_userprofile.h"
|
||||
|
@ -43,7 +42,8 @@ extern int ScanDrawMode;
|
|||
extern int DrawMode;
|
||||
extern int ZBufferMode;
|
||||
|
||||
extern DPID MultiplayerObservedPlayer;
|
||||
//extern DPID MultiplayerObservedPlayer;
|
||||
extern int MultiplayerObservedPlayer;
|
||||
|
||||
#if SupportMorphing
|
||||
MORPHDISPLAY MorphDisplay;
|
||||
|
|
|
@ -33,8 +33,13 @@ extern "C" {
|
|||
#define max(a, b) (((a) > (b)) ? (a) : (b))
|
||||
#endif
|
||||
|
||||
#define stricmp strcasecmp
|
||||
|
||||
/* Types */
|
||||
|
||||
typedef int GUID;
|
||||
typedef int DPID;
|
||||
|
||||
typedef int BOOL;
|
||||
|
||||
typedef struct RECT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue