Files

19 lines
362 B
C++
Raw Permalink Normal View History

2025-09-02 12:50:04 -07:00
#ifndef _CANIMCHARACTERSET
#define _CANIMCHARACTERSET
#include "Kyoto/Animation/CAnimationSet.hpp"
#include "Kyoto/Animation/CCharacterSet.hpp"
#include "types.h"
class CAnimCharacterSet {
public:
CAnimCharacterSet(CInputStream& in);
private:
ushort mVersion;
CCharacterSet mCharacterSet;
CAnimationSet mAnimationSet;
};
#endif // _CANIMCHARACTERSET