Files
prime/include/Kyoto/Animation/CCharacterSet.hpp

15 lines
220 B
C++

#ifndef _CCHARACTERSET
#define _CCHARACTERSET
#include "types.h"
class CInputStream;
class CCharacterSet {
public:
CCharacterSet(CInputStream& in);
private:
uint unk;
char data[0x10];
};
#endif // _CCHARACTERSET