mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-11 17:03:59 +00:00
14 lines
190 B
C++
14 lines
190 B
C++
#ifndef _CANIMATIONSET
|
|
#define _CANIMATIONSET
|
|
|
|
class CInputStream;
|
|
class CAnimationSet {
|
|
public:
|
|
CAnimationSet(CInputStream& in);
|
|
|
|
private:
|
|
char data[0x60];
|
|
};
|
|
|
|
#endif // _CANIMATIONSET
|