iw4x-client/src/Components/Modules/Singleton.hpp

16 lines
180 B
C++

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