ChangeColorEvent.hpp 502 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2024-05-30
  6. * Changed: 2024-05-30
  7. *
  8. * */
  9. #ifndef LS_STD_CHANGE_COLOR_EVENT_HPP
  10. #define LS_STD_CHANGE_COLOR_EVENT_HPP
  11. #include <ls-std/event/Event.hpp>
  12. namespace test::event
  13. {
  14. class ChangeColorEvent : public ls::std::event::Event
  15. {
  16. public:
  17. explicit ChangeColorEvent();
  18. ~ChangeColorEvent() noexcept override;
  19. };
  20. }
  21. #endif