mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-30 15:50:05 -06:00
21 lines
381 B
C++
21 lines
381 B
C++
#pragma once
|
|
|
|
#include <user/config.h>
|
|
|
|
class App
|
|
{
|
|
public:
|
|
static inline bool s_isInit;
|
|
static inline bool s_isMissingDLC;
|
|
static inline bool s_isLoading;
|
|
static inline bool s_isWerehog;
|
|
|
|
static inline ELanguage s_language;
|
|
|
|
static inline double s_deltaTime;
|
|
|
|
static void Restart(std::vector<std::string> restartArgs = {});
|
|
static void Exit();
|
|
};
|
|
|