EventHandler.cpp 420 B

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