Introduce clang-format (#240)

This commit is contained in:
Christian Semmler
2023-10-24 19:38:27 -04:00
committed by GitHub
parent e928fc9425
commit b449da1fa3
408 changed files with 12434 additions and 12813 deletions

View File

@@ -8,20 +8,16 @@ class MxPresenter;
// Unclear what the purpose of this class is
// VTABLE 0x100d62f0
// SIZE 0x18
class MxPresenterListParent : public MxList<MxPresenter*>
{
class MxPresenterListParent : public MxList<MxPresenter*> {
public:
MxPresenterListParent() {
m_customDestructor = Destroy;
}
MxPresenterListParent() { m_customDestructor = Destroy; }
};
// VTABLE 0x100d6308
// SIZE 0x18
class MxPresenterList : public MxPresenterListParent
{
class MxPresenterList : public MxPresenterListParent {
public:
virtual MxS8 Compare(MxPresenter *, MxPresenter *); // +0x14
virtual MxS8 Compare(MxPresenter*, MxPresenter*); // +0x14
};
typedef MxListCursorChildChild<MxPresenter*> MxPresenterListCursor;