123456789101112131415161718 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2024-05-30
- * Changed: 2024-05-30
- *
- * */
- #include "ChangeColorEvent.hpp"
- using ls::std::event::Event;
- using test::event::ChangeColorEvent;
- ChangeColorEvent::ChangeColorEvent() : Event("ChangeColorEvent")
- {}
- ChangeColorEvent::~ChangeColorEvent() noexcept = default;
|