CmdNews: Add reasoning and actions subsections

This commit is contained in:
Tomas Babej
2021-09-27 22:38:29 -04:00
parent e538e9199c
commit c8240f1ad7
2 changed files with 20 additions and 2 deletions

View File

@@ -36,7 +36,9 @@ public:
bool _major = false;
std::string _title;
std::string _update;
NewsItem (bool, const std::string&, const std::string&);
std::string _reasoning;
std::string _actions;
NewsItem (bool, const std::string&, const std::string&, const std::string& = "", const std::string& = "");
void render ();
};