mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 07:02:47 -04:00
30a99c22f1
* Reorganize ImGui menus * Fix crash_reporting.cpp * Update aurora
15 lines
274 B
C++
15 lines
274 B
C++
#ifndef DUSK_MAIN_H
|
|
#define DUSK_MAIN_H
|
|
|
|
#include <filesystem>
|
|
|
|
namespace dusk {
|
|
extern bool IsRunning;
|
|
extern bool IsShuttingDown;
|
|
extern bool IsGameLaunched;
|
|
extern bool IsFocusPaused;
|
|
extern std::filesystem::path ConfigPath;
|
|
}
|
|
|
|
#endif // DUSK_MAIN_H
|