mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
20 lines
263 B
C
20 lines
263 B
C
|
#ifndef MXSIZE32_H
|
||
|
#define MXSIZE32_H
|
||
|
|
||
|
#include "mxtypes.h"
|
||
|
|
||
|
class MxSize32 {
|
||
|
public:
|
||
|
MxSize32() {}
|
||
|
MxSize32(MxS32 p_width, MxS32 p_height)
|
||
|
{
|
||
|
this->m_width = p_width;
|
||
|
this->m_height = p_height;
|
||
|
}
|
||
|
|
||
|
MxS32 m_width;
|
||
|
MxS32 m_height;
|
||
|
};
|
||
|
|
||
|
#endif // MXSIZE32_H
|