mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
3b155bfe38
* Open discussion * Move annotations of header-implemented functions back to `.h` files * Adjust `README.md` * Relocate annotation * linter * Comment markers in headers only, rename script, update github actions * type hint compat * Rename github action, better argparse for linter * Type hints, working test for byname ignore * Move annotation * CI rename and enable warnfail, enforce mode always on * Two step linting * or one step * continue on error * two jobs instead * Fixes --------- Co-authored-by: disinvite <disinvite@users.noreply.github.com>
48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
#ifndef LEGOWORLDLIST_H
|
|
#define LEGOWORLDLIST_H
|
|
|
|
#include "mxlist.h"
|
|
#include "mxtypes.h"
|
|
|
|
class LegoWorld;
|
|
|
|
// VTABLE: LEGO1 0x100d8700
|
|
// class MxCollection<LegoWorld *>
|
|
|
|
// VTABLE: LEGO1 0x100d8718
|
|
// class MxList<LegoWorld *>
|
|
|
|
// VTABLE: LEGO1 0x100d8730
|
|
// class MxPtrList<LegoWorld>
|
|
|
|
// VTABLE: LEGO1 0x100d8680
|
|
// SIZE 0x18
|
|
class LegoWorldList : public MxPtrList<LegoWorld> {
|
|
public:
|
|
LegoWorldList() : MxPtrList<LegoWorld>(Destroy) {}
|
|
virtual MxS8 Compare(LegoWorld*, LegoWorld*) override; // vtable+0x14
|
|
static void Destroy(LegoWorld*);
|
|
};
|
|
|
|
// TEMPLATE: LEGO1 0x100598f0
|
|
// MxCollection<LegoWorld *>::Compare
|
|
|
|
// TEMPLATE: LEGO1 0x10059900
|
|
// MxCollection<LegoWorld *>::~MxCollection<LegoWorld *>
|
|
|
|
// TEMPLATE: LEGO1 0x10059950
|
|
// MxCollection<LegoWorld *>::Destroy
|
|
|
|
// TEMPLATE: LEGO1 0x10059960
|
|
// MxList<LegoWorld *>::~MxList<LegoWorld *>
|
|
|
|
// SYNTHETIC: LEGO1 0x10059ac0
|
|
// MxCollection<LegoWorld *>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x10059b30
|
|
// MxList<LegoWorld *>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x10059be0
|
|
// MxPtrList<LegoWorld>::`scalar deleting destructor'
|
|
|
|
#endif // LEGOWORLDLIST_H
|