mirror of
https://github.com/zeldaret/ph
synced 2026-05-24 15:20:55 -04:00
16 lines
278 B
C++
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
|