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

15 lines
197 B
C++

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