Decomp Inventory::Destroy

This commit is contained in:
Aetias
2023-11-13 22:41:04 +01:00
parent a0cf7d21c6
commit 2dcc30f992
96 changed files with 1428 additions and 1443 deletions
+2 -2
View File
@@ -20,8 +20,6 @@ enum ItemId {
};
extern void* foo(unsigned long length, u32 *id, u32 idLength);
class Inventory : public SysObject {
private:
/* 000 */ EquipItem mEquippedItem;
@@ -65,7 +63,9 @@ private:
public:
static Inventory* Create();
static void Destroy();
Inventory();
~Inventory();
};
extern Inventory *gInventory;
+1
View File
@@ -5,4 +5,5 @@
class SysObject {
public:
static void* operator new(unsigned long length, u32 *id, u32 idLength);
static void operator delete(void *ptr);
};