mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-22 07:41:16 +00:00
match pizza destructor
This commit is contained in:
parent
7fcd874bdb
commit
4e5d7a479e
@ -12,22 +12,13 @@ Pizza::Pizza()
|
|||||||
this->m_unk90 = 0x80000000;
|
this->m_unk90 = 0x80000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x1002c7cf STUB
|
|
||||||
// MxS32 IsleActor::Notify(MxParam *)
|
|
||||||
// {
|
|
||||||
// // TODO
|
|
||||||
// return 0;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x10038100
|
// OFFSET: LEGO1 0x10038100
|
||||||
Pizza::~Pizza()
|
Pizza::~Pizza()
|
||||||
{
|
{
|
||||||
// FIXME: some vtable call from tickle manager, unimplemented atm
|
TickleManager()->Unregister(this);
|
||||||
delete this;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100388a0
|
||||||
// OFFSET: LEGO1 0x100388a0 STUB
|
|
||||||
MxResult Pizza::Tickle()
|
MxResult Pizza::Tickle()
|
||||||
{
|
{
|
||||||
// TODO
|
// TODO
|
||||||
|
|||||||
@ -1,9 +1,10 @@
|
|||||||
#ifndef PIZZA_H
|
#ifndef PIZZA_H
|
||||||
#define PIZZA_H
|
#define PIZZA_H
|
||||||
|
|
||||||
#include "decomp.h"
|
|
||||||
#include "isleactor.h"
|
#include "isleactor.h"
|
||||||
#include "mxcore.h"
|
#include "mxcore.h"
|
||||||
|
#include "mxomni.h"
|
||||||
|
#include "mxticklemanager.h"
|
||||||
#include "mxtypes.h"
|
#include "mxtypes.h"
|
||||||
|
|
||||||
// VTABLE 0x100d7380
|
// VTABLE 0x100d7380
|
||||||
@ -31,12 +32,12 @@ class Pizza : public IsleActor
|
|||||||
return !strcmp(name, Pizza::ClassName()) || IsleActor::IsA(name);
|
return !strcmp(name, Pizza::ClassName()) || IsleActor::IsA(name);
|
||||||
}
|
}
|
||||||
private:
|
private:
|
||||||
undefined4 m_unk80;
|
MxS32 m_unk80;
|
||||||
undefined4 m_unk84;
|
MxS32 m_unk84;
|
||||||
undefined4 m_unk88;
|
MxS32 m_unk88;
|
||||||
undefined4 m_unk8c;
|
MxS32 m_unk8c;
|
||||||
undefined4 m_unk90;
|
MxS32 m_unk90;
|
||||||
undefined4 m_unk98;
|
MxS32 m_unk98;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // PIZZA_H
|
#endif // PIZZA_H
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user