The source of the setup program included with DOOM, Final DOOM, Strife, etc.

This commit is contained in:
Travis Bradshaw
2012-01-31 15:35:30 -06:00
commit b126e26499
608 changed files with 18133 additions and 0 deletions

13
DEFAULT.H Normal file
View File

@@ -0,0 +1,13 @@
//
// DEFAULT.H
//
typedef struct
{
char *name;
int *location;
int defaultvalue;
} default_t;
void M_SaveDefaults (void);
int CheckParm(char *string);
int M_LoadDefaults (void);