Skip to content

Commit d860cb8

Browse files
committed
added CopyAnimation function
1 parent dba18b6 commit d860cb8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Client/sdk/game/CAnimBlendAssocGroup.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,20 @@
1414

1515
typedef unsigned char BYTE;
1616
typedef unsigned long AssocGroupId;
17+
class CAnimBlendAssociation;
1718
class CAnimBlendStaticAssociation;
1819
struct RpClump;
1920
class CAnimBlock;
2021

2122
class CAnimBlendAssocGroup
2223
{
2324
public:
25+
virtual CAnimBlendAssociation * CopyAnimation ( unsigned int AnimID ) = 0;
2426
virtual void InitEmptyAssociations ( RpClump * pClump ) = 0;
2527
virtual bool IsCreated ( void ) = 0;
2628
virtual int GetNumAnimations ( void ) = 0;
27-
virtual CAnimBlock * GetAnimBlock ( void ) = 0;
28-
virtual CAnimBlendStaticAssociation * GetAnimation ( unsigned int ID ) = 0;
29+
virtual CAnimBlock * GetAnimBlock ( void ) = 0;
30+
virtual CAnimBlendStaticAssociation * GetAnimation ( unsigned int ID ) = 0;
2931
virtual void CreateAssociations ( const char * szBlockName ) = 0;
3032
virtual bool IsLoaded ( void ) = 0;
3133
virtual void SetIDOffset ( int iOffset ) = 0;

0 commit comments

Comments
 (0)