EventManager.hpp 603 B

1234567891011121314151617181920212223242526272829
  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-16
  7. *
  8. * */
  9. #ifndef LS_STD_EVENT_MANAGER_REWORKED_HPP
  10. #define LS_STD_EVENT_MANAGER_REWORKED_HPP
  11. #include "Event.hpp"
  12. #include <ls-std/core/Class.hpp>
  13. namespace ls::std::event::reworked
  14. {
  15. class EventManager : public ls::std::core::Class
  16. {
  17. public:
  18. explicit EventManager();
  19. ~EventManager() noexcept override;
  20. void invoke(const ls::std::event::reworked::Event &_event) const;
  21. };
  22. }
  23. #endif