/
Tias
/
UIToolkit
Обзор
Документация
Войти
/
Tias
/
UIToolkit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
include/events/MouseClick.hpp
24 строки
520 B
Tias
add events definitions, work on window
13 июн 2025, 10:17
13 июн 2025, 10:17
65329da
Код
Авторство
О чём код?
#ifndef EVENT_MOUSE_CLICK_HPP_ #define EVENT_MOUSE_CLICK_HPP_ #include "MouseDefinitions.hpp" #include "events/IUIEvent.hpp" #include <GLFW/glfw3.h> namespace event { class MousePress : public IUIEvent<ui::MouseButton> { public: MousePress(); ~MousePress(); void registry(GLFWwindow *window) override; }; class MouseRelease : public IUIEvent<ui::MouseButton> { public: MouseRelease(); ~MouseRelease(); void registry(GLFWwindow *window) override; }; } // namespace event #endif // !EVENT_MOUSE_CLICK_HPP_