mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-04 10:41:35 -06:00
13 lines
214 B
C++
13 lines
214 B
C++
#pragma once
|
|
|
|
class App
|
|
{
|
|
public:
|
|
inline static bool s_isInit;
|
|
inline static bool s_isMissingDLC;
|
|
|
|
inline static double s_deltaTime;
|
|
|
|
static void Exit(std::vector<std::string> restartArgs = {});
|
|
};
|