mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
c47206617d
* Reorganize sources * Refactor * Remove relative paths * Renames * Fix gitignore * Remove stuff * Try fixing format script * Fix format * Fix format * Fix naming script * Test format * Fix format
27 lines
510 B
C++
27 lines
510 B
C++
#ifndef MXCOLLECTION_H
|
|
#define MXCOLLECTION_H
|
|
|
|
#include "mxcore.h"
|
|
|
|
template <class T>
|
|
class MxCollection : public MxCore {
|
|
public:
|
|
MxCollection()
|
|
{
|
|
m_count = 0;
|
|
SetDestroy(Destroy);
|
|
}
|
|
|
|
static void Destroy(T){};
|
|
|
|
void SetDestroy(void (*p_customDestructor)(T)) { this->m_customDestructor = p_customDestructor; }
|
|
|
|
virtual ~MxCollection() {}
|
|
virtual MxS8 Compare(T, T) { return 0; }
|
|
|
|
protected:
|
|
MxU32 m_count; // 0x8
|
|
void (*m_customDestructor)(T); // 0xc
|
|
};
|
|
|
|
#endif // MXCOLLECTION_H
|