2023-12-30 12:58:51 +01:00

19 lines
234 B
C++

#pragma once
namespace Components
{
class Singleton : public Component
{
public:
Singleton();
void preDestroy() override;
static bool IsFirstInstance();
private:
static HANDLE Mutex;
static bool FirstInstance;
};
}