mirror of https://github.com/AxioDL/metaforce.git
21 lines
419 B
C++
21 lines
419 B
C++
#pragma once
|
|
|
|
#include <map>
|
|
|
|
#include "Runtime/IOStreams.hpp"
|
|
#include "Runtime/GCNTypes.hpp"
|
|
#include "Runtime/Character/CCharacterInfo.hpp"
|
|
|
|
namespace urde {
|
|
|
|
class CCharacterSet {
|
|
u16 x0_version;
|
|
std::map<u32, CCharacterInfo> x4_characters;
|
|
|
|
public:
|
|
explicit CCharacterSet(CInputStream& in);
|
|
const std::map<u32, CCharacterInfo>& GetCharacterInfoMap() const { return x4_characters; }
|
|
};
|
|
|
|
} // namespace urde
|