mirror of https://github.com/PrimeDecomp/prime.git
14 lines
252 B
C++
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
|