iw4x-client/iw4/Components/Singleton.hpp
2015-12-27 20:05:43 +01:00

15 lines
215 B
C++

namespace Components
{
class Singleton : public Component
{
public:
Singleton();
const char* GetName() { return "Singleton"; };
static bool IsFirstInstance();
private:
static bool FirstInstance;
};
}