sm64pc/src/pc/cliopts.h

19 lines
351 B
C
Raw Normal View History

2020-05-18 22:31:19 +02:00
#ifndef _CLIOPTS_H
#define _CLIOPTS_H
#include "platform.h"
2020-05-18 22:31:19 +02:00
struct PCCLIOptions {
unsigned int SkipIntro;
unsigned int FullScreen;
char ConfigFile[SYS_MAX_PATH];
char SavePath[SYS_MAX_PATH];
char GameDir[SYS_MAX_PATH];
};
extern struct PCCLIOptions gCLIOpts;
2020-05-15 17:51:06 +02:00
void parse_cli_opts(int argc, char* argv[]);
2020-05-18 22:31:19 +02:00
#endif // _CLIOPTS_H