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

19 lines
220 B
C++
Raw Normal View History

2015-12-30 18:55:08 -05:00
namespace Components
{
class News : public Component
{
public:
News();
2016-08-15 10:40:30 -04:00
~News();
#ifdef DEBUG
2015-12-30 18:55:08 -05:00
const char* GetName() { return "News"; };
2016-08-15 10:40:30 -04:00
#endif
bool UnitTest();
2015-12-30 18:55:08 -05:00
private:
2016-06-02 09:11:31 -04:00
static std::thread Thread;
2015-12-30 18:55:08 -05:00
};
}