Match and link CAnimation

Former-commit-id: b2bebb982d
This commit is contained in:
2022-12-08 14:45:30 -08:00
parent c3f05117e6
commit 0d13bb1a4d
4 changed files with 26 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
#ifndef _CMETAANIMFACTORY
#define _CMETAANIMFACTORY
#include "rstl/rc_ptr.hpp"
class IMetaAnim;
class CInputStream;
class CMetaAnimFactory {
public:
static rstl::rc_ptr< IMetaAnim > CreateMetaAnim(CInputStream& in);
};
#endif // _CMETAANIMFACTORY