mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-10-31 23:45:55 +00:00
21 lines
590 B
C
21 lines
590 B
C
|
#pragma once
|
||
|
|
||
|
class CAnimBlendAssociation;
|
||
|
|
||
|
class CAnimBlendAssocGroup
|
||
|
{
|
||
|
public:
|
||
|
CAnimBlendAssociation *assocList;
|
||
|
int32 numAssociations;
|
||
|
|
||
|
CAnimBlendAssocGroup(void);
|
||
|
~CAnimBlendAssocGroup(void);
|
||
|
void DestroyAssociations(void);
|
||
|
CAnimBlendAssociation *GetAnimation(uint32 id);
|
||
|
CAnimBlendAssociation *GetAnimation(const char *name);
|
||
|
CAnimBlendAssociation *CopyAnimation(uint32 id);
|
||
|
CAnimBlendAssociation *CopyAnimation(const char *name);
|
||
|
void CreateAssociations(const char *name);
|
||
|
void CreateAssociations(const char *blockName, RpClump *clump, char **animNames, int numAssocs);
|
||
|
};
|