prime/include/Kyoto/Animation/CMetaAnimFactory.hpp
Phillip Stephens 0d13bb1a4d Match and link CAnimation
Former-commit-id: b2bebb982d5921c74637b3430c6ab650182e9411
2022-12-08 14:45:30 -08:00

14 lines
252 B
C++

#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