mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-12 12:46:08 +00:00
19 lines
362 B
C++
19 lines
362 B
C++
#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
|