New Super Mario Bros. U Headers
Loading...
Searching...
No Matches
Mii_SlotMgr.h
Go to the documentation of this file.
1#pragma once
2
3#include <heap/seadDisposer.h>
4
5struct FFLStoreData;
6
7namespace Mii {
8
9class SlotID;
10
11class SlotMgr : public sead::IDisposer // vtbl Address: 0x100BBE24
12{
13public:
14 // Address: 0x024ECA98
16
17 virtual ~SlotMgr()
18 {
20 }
21
22 // Address: 0x024ECDDC
23 bool initialize();
24 // Address: 0x024ECF34
25 void destroy();
26
27public:
28 // Address: 0x024ECF98
29 static bool getStoreData(FFLStoreData* store_data, const SlotID& slot_id);
30
31private:
33 u32 mSlot[0x5E8 / sizeof(u32)]; // sead::FixedObjList<Mii::Slot, 62>
34};
35static_assert(sizeof(SlotMgr) == 0x5FC);
36
37}
struct FFLStoreData FFLStoreData
Definition Mii_SlotID.h:8
Definition Mii_SlotMgr.h:12
bool initialize()
virtual ~SlotMgr()
Definition Mii_SlotMgr.h:17
static bool getStoreData(FFLStoreData *store_data, const SlotID &slot_id)
u32 mSlot[0x5E8/sizeof(u32)]
Definition Mii_SlotMgr.h:33
void destroy()
u32 mSlotNum
Definition Mii_SlotMgr.h:32
Definition Mii_CafeResInitializer.h:7