sm64pc/src/pc/cliopts.h

15 lines
255 B
C

#ifndef _CLIOPTS_H
#define _CLIOPTS_H
struct PCCLIOptions {
unsigned int SkipIntro;
unsigned int FullScreen;
char ConfigFile[1024];
};
extern struct PCCLIOptions gCLIOpts;
void parse_cli_opts(int argc, char* argv[]);
#endif // _CLIOPTS_H