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

25 lines
426 B
C++
Raw Normal View History

2017-01-18 17:44:36 -05:00
namespace Components
{
class News : public Component
{
public:
News();
~News();
#if defined(DEBUG) || defined(FORCE_UNIT_TESTS)
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);
static const char* GetNewsText();
};
}