mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-13 06:19:14 +00:00
28 lines
574 B
C++
28 lines
574 B
C++
#pragma once
|
|
|
|
#include "templates.h"
|
|
|
|
class CAnimBlendSequence;
|
|
|
|
// A collection of sequences
|
|
class CAnimBlendHierarchy
|
|
{
|
|
public:
|
|
char name[24];
|
|
CAnimBlendSequence *sequences;
|
|
int16 numSequences;
|
|
int16 compressed; // not really used
|
|
float totalLength;
|
|
CLink<CAnimBlendHierarchy*> *linkPtr;
|
|
|
|
CAnimBlendHierarchy(void);
|
|
void Shutdown(void);
|
|
void SetName(char *name);
|
|
void CalcTotalTime(void);
|
|
void RemoveQuaternionFlips(void);
|
|
void RemoveAnimSequences(void);
|
|
void Uncompress(void);
|
|
void RemoveUncompressedData(void);
|
|
};
|
|
|
|
VALIDATE_SIZE(CAnimBlendHierarchy, 0x28); |