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

20 lines
294 B
C++
Raw Normal View History

2017-01-20 08:36:52 -05:00
#pragma once
2017-01-19 16:23:59 -05:00
namespace Components
{
class Singleton : public Component
{
public:
Singleton();
#if defined(DEBUG) || defined(FORCE_UNIT_TESTS)
2017-01-20 08:36:52 -05:00
const char* getName() override { return "Singleton"; };
2017-01-19 16:23:59 -05:00
#endif
static bool IsFirstInstance();
private:
static bool FirstInstance;
};
}