mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
c66b6aa123
* Refine MxObjectFactory * Change interface of Destroy --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
22 lines
509 B
C++
22 lines
509 B
C++
#ifndef LEGOOBJECTFACTORY_H
|
|
#define LEGOOBJECTFACTORY_H
|
|
|
|
#include "mxobjectfactory.h"
|
|
|
|
#define FOR_LEGOOBJECTFACTORY_OBJECTS(X) \
|
|
X(InfocenterState)
|
|
|
|
// VTABLE 0x100d4768
|
|
class LegoObjectFactory : public MxObjectFactory
|
|
{
|
|
public:
|
|
LegoObjectFactory();
|
|
virtual MxCore *Create(const char *p_name) override; // vtable 0x14
|
|
virtual void Destroy(MxCore *p_object) override; // vtable 0x18
|
|
private:
|
|
#define X(V) MxAtomId m_id##V;
|
|
FOR_LEGOOBJECTFACTORY_OBJECTS(X)
|
|
#undef X
|
|
};
|
|
|
|
#endif // LEGOOBJECTFACTORY_H
|