EventHandler.cpp 429 B

1234567891011121314151617181920
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-11-27
  6. * Changed: 2021-04-23
  7. *
  8. * */
  9. #include <ls_std/event/EventHandler.hpp>
  10. ls_std::EventHandler::EventHandler(ls_std::event_id _id)
  11. : ls_std::Narrator(),
  12. id(std::move(_id))
  13. {}
  14. ls_std::event_id ls_std::EventHandler::getId()
  15. {
  16. return this->id;
  17. }