2019-06-11 02:59:28 -04:00
|
|
|
#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);
|
2019-08-16 14:17:15 -04:00
|
|
|
void CreateAssociations(const char *blockName, RpClump *clump, const char **animNames, int numAssocs);
|
2019-06-11 02:59:28 -04:00
|
|
|
};
|