mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 16:34:06 +00:00
Format
This commit is contained in:
@@ -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
|
||||||
|
Reference in New Issue
Block a user