This commit is contained in:
Christian Semmler
2023-10-25 06:38:36 -04:00
parent 55279e9e78
commit a2a5cd1186

View File

@@ -3,18 +3,17 @@
#include "mxtypes.h" #include "mxtypes.h"
class MxSize32 class MxSize32 {
{
public: public:
MxSize32() { } MxSize32() {}
MxSize32(MxS32 p_width, MxS32 p_height) MxSize32(MxS32 p_width, MxS32 p_height)
{ {
this->m_width = p_width; this->m_width = p_width;
this->m_height = p_height; this->m_height = p_height;
} }
MxS32 m_width; MxS32 m_width;
MxS32 m_height; MxS32 m_height;
}; };
#endif // MXSIZE32_H #endif // MXSIZE32_H