/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-11-27 * Changed: 2021-04-23 * * */ #include "GossipNewsEvent.hpp" ls_std_test::GossipNewsEvent::GossipNewsEvent(const std::string &_news) : ls_std::Event("GossipNewsEvent") { ls_std::event_parameter newsParameter = std::make_pair("news", _news); this->addParameter(newsParameter); }