mirror of https://github.com/AxioDL/metaforce.git
21 lines
328 B
C++
21 lines
328 B
C++
|
#ifndef __PSHAG_CCHARACTERSET_HPP__
|
||
|
#define __PSHAG_CCHARACTERSET_HPP__
|
||
|
|
||
|
#include "IOStreams.hpp"
|
||
|
#include "CCharacterInfo.hpp"
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
|
||
|
class CCharacterSet
|
||
|
{
|
||
|
u16 x0_version;
|
||
|
std::map<u32, CCharacterInfo> x4_characters;
|
||
|
public:
|
||
|
CCharacterSet(CInputStream& in);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __PSHAG_CCHARACTERSET_HPP__
|