metaforce/Runtime/Character/CCharacterSet.hpp

21 lines
437 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-04-09 21:49:02 -07:00
#include <map>
#include "Runtime/Streams/IOStreams.hpp"
#include "Runtime/GCNTypes.hpp"
#include "Runtime/Character/CCharacterInfo.hpp"
2016-04-09 21:49:02 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2018-12-07 21:30:43 -08:00
class CCharacterSet {
u16 x0_version;
std::map<u32, CCharacterInfo> x4_characters;
2016-04-09 21:49:02 -07:00
public:
explicit CCharacterSet(CInputStream& in);
2018-12-07 21:30:43 -08:00
const std::map<u32, CCharacterInfo>& GetCharacterInfoMap() const { return x4_characters; }
2016-04-09 21:49:02 -07:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce