iw4x-client/src/Components/Modules/News.hpp
2016-08-31 00:23:17 +02:00

23 lines
332 B
C++

namespace Components
{
class News : public Component
{
public:
News();
~News();
#ifdef DEBUG
const char* GetName() { return "News"; };
#endif
bool UnitTest();
private:
static std::thread Thread;
static bool Terminate;
static void CheckForUpdate();
static void ExitProcessStub(unsigned int exitCode);
};
}