More defs for CStateManagerContainer & friends

Former-commit-id: 04a7213fa7
This commit is contained in:
2022-08-12 22:48:34 -04:00
parent d3fd9a3936
commit f7f0a8e140
19 changed files with 390 additions and 7 deletions

View File

@@ -0,0 +1,17 @@
#ifndef _CWEAPONMANAGER_HPP
#define _CWEAPONMANAGER_HPP
#include "types.h"
#include "MetroidPrime/TGameTypes.hpp"
#include "rstl/map.hpp"
#include "rstl/reserved_vector.hpp"
class CWeaponMgr {
private:
rstl::map< TUniqueId, rstl::reserved_vector< s32, 15 > > x0_weapons;
};
CHECK_SIZEOF(CWeaponMgr, 0x14);
#endif