mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-20 23:01:16 +00:00
start pizza
This commit is contained in:
parent
fb56735fbd
commit
598ffdb8e4
@ -1,13 +1,18 @@
|
|||||||
#include "pizza.h"
|
#include "pizza.h"
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x10037ef0 STUB
|
// OFFSET: LEGO1 0x10037ef0
|
||||||
Pizza::Pizza()
|
Pizza::Pizza()
|
||||||
{
|
{
|
||||||
// TODO
|
this->m_unk80 = 0;
|
||||||
|
this->m_unk84 = 0;
|
||||||
|
this->m_unk88 = 0;
|
||||||
|
this->m_unk8c = -1;
|
||||||
|
this->m_unk98 = 0;
|
||||||
|
this->m_unk90 = 0x80000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x10038100 STUB
|
// OFFSET: LEGO1 0x10038100
|
||||||
Pizza::~Pizza()
|
Pizza::~Pizza()
|
||||||
{
|
{
|
||||||
// TODO
|
delete this;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,7 +1,9 @@
|
|||||||
#ifndef PIZZA_H
|
#ifndef PIZZA_H
|
||||||
#define PIZZA_H
|
#define PIZZA_H
|
||||||
|
|
||||||
|
#include "decomp.h"
|
||||||
#include "isleactor.h"
|
#include "isleactor.h"
|
||||||
|
#include "mxtypes.h"
|
||||||
|
|
||||||
// VTABLE 0x100d7380
|
// VTABLE 0x100d7380
|
||||||
// SIZE 0x9c
|
// SIZE 0x9c
|
||||||
@ -10,7 +12,13 @@ class Pizza : public IsleActor
|
|||||||
public:
|
public:
|
||||||
Pizza();
|
Pizza();
|
||||||
virtual ~Pizza() override;
|
virtual ~Pizza() override;
|
||||||
|
private:
|
||||||
|
undefined4 m_unk80;
|
||||||
|
undefined4 m_unk84;
|
||||||
|
undefined4 m_unk88;
|
||||||
|
undefined4 m_unk8c;
|
||||||
|
undefined4 m_unk90;
|
||||||
|
undefined4 m_unk98;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // PIZZA_H
|
#endif // PIZZA_H
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user