mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
04b503c79f
* Bootstrap MxMediaPresenter * Add override
12 lines
292 B
C++
12 lines
292 B
C++
#include "mxpresenterlist.h"
|
|
|
|
#include "mxpresenter.h"
|
|
|
|
DECOMP_SIZE_ASSERT(MxPresenterList, 0x18);
|
|
DECOMP_SIZE_ASSERT(MxPresenterListCursor, 0x10);
|
|
|
|
// OFFSET: LEGO1 0x1001cd00
|
|
MxS8 MxPresenterList::Compare(MxPresenter* p_a, MxPresenter* p_b)
|
|
{
|
|
return p_a == p_b ? 0 : p_a < p_b ? -1 : 1;
|
|
}
|