Files
ph/src/Inventory.cpp
T
2023-11-13 22:41:04 +01:00

16 lines
278 B
C++

#include "Inventory.hpp"
extern u32 *data_027e0ce0[];
#pragma thumb on
Inventory* Inventory::Create() {
gInventory = new(data_027e0ce0[1], 4) Inventory();
return gInventory;
}
void Inventory::Destroy() {
delete gInventory;
gInventory = 0;
}
#pragma thumb off