prime/include/MetroidPrime/CWeaponMgr.hpp
Luke Street 234afca6c2 clang-format pass
Former-commit-id: 6a979e343f6a88e4c9b78d3917c1fabfcb211a0a
2022-09-18 02:05:46 -04:00

18 lines
320 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