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

15 lines
196 B
C++
Raw Normal View History

2015-12-30 18:55:08 -05:00
namespace Components
{
class News : public Component
{
public:
News();
2016-01-26 18:50:20 -05:00
~News();
2015-12-30 18:55:08 -05:00
const char* GetName() { return "News"; };
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
};
}