mirror of
https://github.com/id-Software/idsetup.git
synced 2026-03-19 16:39:39 +01:00
14 lines
187 B
C
14 lines
187 B
C
//
|
|
// DEFAULT.H
|
|
//
|
|
typedef struct
|
|
{
|
|
char *name;
|
|
int *location;
|
|
int defaultvalue;
|
|
} default_t;
|
|
|
|
void M_SaveDefaults (void);
|
|
int CheckParm(char *string);
|
|
int M_LoadDefaults (void);
|