/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2024-05-30 * Changed: 2024-05-30 * * */ #ifndef LS_STD_CHANGE_COLOR_EVENT_HPP #define LS_STD_CHANGE_COLOR_EVENT_HPP #include namespace test::event { class ChangeColorEvent : public ls::std::event::Event { public: explicit ChangeColorEvent(); ~ChangeColorEvent() noexcept override; }; } #endif