mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2025-07-01 15:36:10 +00:00
18 lines
382 B
C++
18 lines
382 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
struct Options {
|
|
std::string executable_name = "BeamMP-Launcher.exe";
|
|
unsigned int port = 4444;
|
|
bool verbose = false;
|
|
bool no_download = false;
|
|
bool no_launch = false;
|
|
char **game_arguments = nullptr;
|
|
int game_arguments_length = 0;
|
|
};
|
|
|
|
void InitOptions(int argc, char *argv[], Options &options);
|
|
|
|
extern Options options;
|