The Wolfenstein 3D source as originally released.

This commit is contained in:
Travis Bradshaw
2012-02-06 10:31:54 -06:00
commit 7137844284
113 changed files with 48280 additions and 0 deletions

34
WOLFSRC/ID_HEAD.H Normal file
View File

@@ -0,0 +1,34 @@
// 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