mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2025-08-18 01:06:51 +00:00
18 lines
389 B
C++
18 lines
389 B
C++
///
|
|
/// Created by Anonymous275 on 12/26/21
|
|
/// Copyright (c) 2021-present Anonymous275 read the LICENSE file for more info.
|
|
///
|
|
|
|
#include "Launcher.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
Launcher launcher(argc, argv);
|
|
if(!launcher.Terminate()) {
|
|
launcher.RunDiscordRPC();
|
|
launcher.LoadConfig();
|
|
launcher.CheckKey();
|
|
//UI call
|
|
}
|
|
return 0;
|
|
}
|