1234567891011121314151617181920212223242526 |
- /*
- * 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 <ls-std/event/Event.hpp>
- namespace test::event
- {
- class ChangeColorEvent : public ls::std::event::Event
- {
- public:
- explicit ChangeColorEvent();
- ~ChangeColorEvent() noexcept override;
- };
- }
- #endif
|