Etterna 0.74.4
Loading...
Searching...
No Matches
CommandLineActions.h
1#ifndef CommandLineActions_H
2#define CommandLineActions_H
3
4#include <string>
5#include <vector>
6
7class LoadingWindow;
8
14void
16
19{
20 public:
22 std::vector<std::string> argv;
23};
28extern std::vector<CommandLineArgs> ToProcess;
29}
30
31#endif
The housing for the command line arguments.
Definition CommandLineActions.h:19
std::vector< std::string > argv
the arguments in question.
Definition CommandLineActions.h:22
Opens and displays the loading banner.
Definition LoadingWindow.h:9
The collection of command line actions.
Definition CommandLineActions.h:10
std::vector< CommandLineArgs > ToProcess
A list of command line arguemnts to process while the game is running. These args could have come fro...
Definition CommandLineActions.cpp:24
void Handle(LoadingWindow *pLW)
Perform a utility function, then exit.
Definition CommandLineActions.cpp:105