mirror of
https://github.com/coah80/LegacyVulkEdition.git
synced 2026-06-26 19:15:33 +00:00
21 lines
498 B
C++
21 lines
498 B
C++
#pragma once
|
|
|
|
class ShutdownManager {
|
|
public:
|
|
enum eShutdownType {
|
|
eConnectionReadThreads = 0,
|
|
eConnectionWriteThreads,
|
|
eEventQueueThreads,
|
|
eRenderChunkUpdateThread,
|
|
ePostProcessThread,
|
|
eServerThread,
|
|
eSaveThread,
|
|
eNetworkThread,
|
|
eRunUpdateThread
|
|
};
|
|
|
|
static void HasStarted(eShutdownType, HANDLE = NULL) {}
|
|
static void HasFinished(eShutdownType) {}
|
|
static bool ShouldRun(eShutdownType) { return true; }
|
|
};
|