2023-09-19 23:00:34 -04:00
|
|
|
#ifndef MXREGION_H
|
|
|
|
#define MXREGION_H
|
|
|
|
|
|
|
|
#include "mxcore.h"
|
2023-10-16 19:20:52 -04:00
|
|
|
#include "mxrect32.h"
|
2023-10-14 15:33:11 -04:00
|
|
|
#include "decomp.h"
|
2023-09-19 23:00:34 -04:00
|
|
|
|
|
|
|
// VTABLE 0x100dcae8
|
|
|
|
// SIZE 0x1c
|
|
|
|
class MxRegion : public MxCore
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MxRegion();
|
|
|
|
virtual ~MxRegion() override;
|
|
|
|
|
|
|
|
virtual void Reset();
|
2023-10-16 19:20:52 -04:00
|
|
|
virtual void vtable18(MxRect32 &p_rect);
|
2023-09-19 23:00:34 -04:00
|
|
|
virtual void vtable1c();
|
2023-10-16 19:20:52 -04:00
|
|
|
virtual MxBool vtable20();
|
|
|
|
|
|
|
|
inline MxRect32 &GetRect() { return this->m_rect; }
|
2023-09-19 23:00:34 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
// A container (probably MxList) holding MxRect32
|
2023-10-16 19:20:52 -04:00
|
|
|
// MxList<MxRect32*> *m_rects;
|
|
|
|
undefined4 m_unk08;
|
|
|
|
MxRect32 m_rect;
|
2023-09-19 23:00:34 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXREGION_H
|