NewsItem: Add stub

This commit is contained in:
Tomas Babej
2021-09-26 21:10:41 -04:00
parent 36bdd81d46
commit 3ed89393ec
2 changed files with 32 additions and 0 deletions

View File

@@ -31,6 +31,15 @@
#include <Command.h>
#include <CmdConfig.h>
class NewsItem {
public:
bool _major = false;
std::string _title;
std::string _update;
NewsItem (bool, const std::string&, const std::string&);
void render ();
};
class CmdNews : public Command
{
public: