mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-31 00:10:26 -06:00
18 lines
315 B
C++
18 lines
315 B
C++
#pragma once
|
|
|
|
#include <user/config_detail.h>
|
|
|
|
class App
|
|
{
|
|
public:
|
|
inline static bool s_isInit;
|
|
inline static bool s_isMissingDLC;
|
|
|
|
inline static ELanguage s_language;
|
|
|
|
inline static double s_deltaTime;
|
|
|
|
static void Restart(std::vector<std::string> restartArgs = {});
|
|
static void Exit();
|
|
};
|