mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
13 lines
147 B
C++
13 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
|