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

14 lines
196 B
C++
Raw Normal View History

2015-12-30 18:55:08 -05:00
namespace Components
{
class News : public Component
{
public:
News();
const char* GetName() { return "News"; };
private:
static std::string Motd;
static const char* GetMotd();
};
}