mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
14 lines
147 B
C
14 lines
147 B
C
|
#ifndef MXRECT32_H
|
||
|
#define MXRECT32_H
|
||
|
|
||
|
class MxRect32
|
||
|
{
|
||
|
public:
|
||
|
int m_left;
|
||
|
int m_top;
|
||
|
int m_right;
|
||
|
int m_bottom;
|
||
|
};
|
||
|
|
||
|
#endif // MXRECT32_H
|