mirror of
https://github.com/id-Software/wolf3d.git
synced 2026-03-19 16:39:29 +01:00
35 lines
458 B
C
35 lines
458 B
C
// ID_HEAD.H
|
|
|
|
|
|
#define EXTENSION "WLF"
|
|
#define WOLF
|
|
|
|
#define TEXTGR 0
|
|
#define CGAGR 1
|
|
#define EGAGR 2
|
|
#define VGAGR 3
|
|
|
|
#define GRMODE VGAGR
|
|
|
|
#include "VERSION.H"
|
|
|
|
typedef enum {false,true} boolean;
|
|
typedef unsigned char byte;
|
|
typedef unsigned int word;
|
|
typedef unsigned long longword;
|
|
typedef byte * Ptr;
|
|
|
|
typedef struct
|
|
{
|
|
int x,y;
|
|
} Point;
|
|
|
|
typedef struct
|
|
{
|
|
Point ul,lr;
|
|
} Rect;
|
|
|
|
|
|
void Quit (char *error); // defined in user program
|
|
|