iw4x-client/src/Components/Modules/News.hpp
2016-06-02 15:11:31 +02:00

15 lines
196 B
C++

namespace Components
{
class News : public Component
{
public:
News();
~News();
const char* GetName() { return "News"; };
bool UnitTest();
private:
static std::thread Thread;
};
}