mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
a0fac56d4c
Co-authored-by: itsmattkc <itsmattkc@gmail.com>
22 lines
346 B
C++
22 lines
346 B
C++
#ifndef MXRECT32_H
|
|
#define MXRECT32_H
|
|
|
|
class MxRect32
|
|
{
|
|
public:
|
|
MxRect32() { }
|
|
MxRect32(int p_left, int p_top, int p_right, int p_bottom)
|
|
{
|
|
this->m_left = p_left;
|
|
this->m_top = p_top;
|
|
this->m_right = p_right;
|
|
this->m_bottom = p_bottom;
|
|
}
|
|
|
|
int m_left;
|
|
int m_top;
|
|
int m_right;
|
|
int m_bottom;
|
|
};
|
|
|
|
#endif // MXRECT32_H
|