13 : m_Width(width), m_Height(height)
16 inline unsigned int GetWidth()
const {
return m_Width; }
17 inline unsigned int GetHeight()
const {
return m_Height; }
19 std::string ToString()
const override
22 ss <<
"WindowResizeEvent: " << m_Width <<
", " << m_Height;
26 EVENT_CLASS_TYPE(WindowResize)
27 EVENT_CLASS_CATEGORY(EventCategoryApplication)
30 unsigned int m_Width, m_Height;
40 EVENT_CLASS_TYPE(WindowClose)
41 EVENT_CLASS_CATEGORY(EventCategoryApplication)
51 EVENT_CLASS_TYPE(AppTick)
52 EVENT_CLASS_CATEGORY(EventCategoryApplication)
62 EVENT_CLASS_TYPE(AppUpdate)
63 EVENT_CLASS_CATEGORY(EventCategoryApplication)
73 EVENT_CLASS_TYPE(AppRender)
74 EVENT_CLASS_CATEGORY(EventCategoryApplication)
Definition ApplicationEvent.h:67
Definition ApplicationEvent.h:45
Definition ApplicationEvent.h:56
Definition ApplicationEvent.h:34
Definition ApplicationEvent.h:10