[Updated & Fixed] Launch Button, Settings UI, Console.

This commit is contained in:
Sam39
2022-08-08 12:35:14 +03:00
parent f273bc3d90
commit 0bf4415376
4 changed files with 139 additions and 52 deletions

View File

@@ -21,7 +21,7 @@ struct VersionParser {
class Launcher {
public: // constructors
Launcher(int argc, char* argv[]);
Launcher();
~Launcher();
public: // available functions
@@ -61,6 +61,9 @@ class Launcher {
void ListenIPC();
void Abort();
public: // variables
static inline std::thread EntryThread{};
private: // variables
uint32_t GamePID{0};
bool EnableUI = true;
@@ -91,3 +94,4 @@ class ShutdownException : public std::runtime_error {
explicit ShutdownException(const std::string& message) :
runtime_error(message){};
};
void entry();