EventTypes.hpp 426 B

12345678910111213141516171819202122
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2024-05-16
  6. * Changed: 2024-05-17
  7. *
  8. * */
  9. #ifndef LS_STD_EVENT_TYPES_HPP
  10. #define LS_STD_EVENT_TYPES_HPP
  11. #include <cstdint>
  12. #include <functional>
  13. namespace ls::std::event::type
  14. {
  15. using event_action = ::std::function<void()>;
  16. using listener_id = uint32_t;
  17. }
  18. #endif