16 lines
180 B
C++
16 lines
180 B
C++
#pragma once
|
|
|
|
namespace Components
|
|
{
|
|
class Singleton : public Component
|
|
{
|
|
public:
|
|
Singleton();
|
|
|
|
static bool IsFirstInstance();
|
|
|
|
private:
|
|
static bool FirstInstance;
|
|
};
|
|
}
|