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

@@ -18,11 +18,14 @@ public:
virtual MxBool VTable0x1c(MxRect32& p_rect); // vtable+0x1c
virtual MxBool VTable0x20(); // vtable+0x20
inline MxRect32& GetRect() { return this->m_rect; }
inline MxRegionTopBottomList* GetTopBottomList() const { return m_list; }
inline const MxRect32& GetRect() const { return m_rect; }
friend class MxRegionCursor;
private:
MxRegionList* m_list; // 0x08
MxRect32 m_rect; // 0x0c
MxRegionTopBottomList* m_list; // 0x08
MxRect32 m_rect; // 0x0c
};
#endif // MXREGION_H