isle-portable/LEGO1/mxregion.h
Christian Semmler e4f87ad7dd
Implement MxVideoManager::vtable0x28 and Create (#208)
* MxVideoManager::Destroy / destructor

* Consistency

* Add missing override

* Implement MxVideoManager::vtable28

* Implement vtable2c

* Rename to Create
2023-10-14 21:33:11 +02:00

28 lines
525 B
C++

#ifndef MXREGION_H
#define MXREGION_H
#include "mxcore.h"
#include "decomp.h"
// VTABLE 0x100dcae8
// SIZE 0x1c
class MxRegion : public MxCore
{
public:
MxRegion();
virtual ~MxRegion() override;
virtual void Reset();
virtual void vtable18();
virtual void vtable1c();
virtual void vtable20();
private:
// A container (probably MxList) holding MxRect32
// MxList<MxRect32> *m_rects;
// 4 coordinates (could be MxRect32)
// MxS32 left, top, right, bottom;
undefined pad[0x14];
};
#endif // MXREGION_H