Implement/match MxRegionCursor class (#385)

* Implement/match MxRegionCursor class

* Rename function
This commit is contained in:
Christian Semmler
2023-12-28 23:37:21 -05:00
committed by GitHub
parent 3f63950a7d
commit d82d062e92
10 changed files with 391 additions and 29 deletions

View File

@@ -110,10 +110,10 @@ private:
inline static MxS32 Min(MxS32 p_a, MxS32 p_b) { return p_a <= p_b ? p_a : p_b; };
inline static MxS32 Max(MxS32 p_a, MxS32 p_b) { return p_a <= p_b ? p_b : p_a; };
MxS32 m_left;
MxS32 m_top;
MxS32 m_right;
MxS32 m_bottom;
MxS32 m_left; // 0x00
MxS32 m_top; // 0x04
MxS32 m_right; // 0x08
MxS32 m_bottom; // 0x0c
};
#endif // MXRECT32_H