prime/include/MetroidPrime/CWeaponMgr.hpp
Luke Street 0f25a3c8d4 Migrate s32->int, u32->uint; fix dolphin/types.h
Former-commit-id: 7eb08b6ee832f11971da0cfdc53b5a55b74ac79d
2022-09-05 00:01:22 -04:00

17 lines
319 B
C++

#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< int, 15 > > x0_weapons;
};
CHECK_SIZEOF(CWeaponMgr, 0x14);
#endif