galaxy 1.0.0
Real-Time C++23 Game Programming Framework. Built on data-driven design principles and agile software engineering.
Loading...
Searching...
No Matches
WindowResized.hpp
Go to the documentation of this file.
1
7
8#ifndef GALAXY_EVENTS_WINDOWRESIZED_HPP_
9#define GALAXY_EVENTS_WINDOWRESIZED_HPP_
10
11namespace galaxy
12{
16 struct WindowResized final
17 {
21 int m_width = 0;
22
26 int m_height = 0;
27 };
28} // namespace galaxy
29
30#endif
Animated.cpp galaxy.
Definition Animated.cpp:16
New width and height of window being resized.
int m_height
New height of window.
int m_width
New width of window.