isle-portable/LEGO1/mxpresenterlist.cpp

13 lines
292 B
C++
Raw Normal View History

#include "mxpresenterlist.h"
2023-10-24 19:38:27 -04:00
#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;
}