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