sm64pc/src/pc/cliopts.h

15 lines
255 B
C
Raw Normal View History

2020-05-18 22:31:19 +02:00
#ifndef _CLIOPTS_H
#define _CLIOPTS_H
2020-05-18 22:31:19 +02:00
struct PCCLIOptions {
unsigned int SkipIntro;
unsigned int FullScreen;
char ConfigFile[1024];
};
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