prime/include/Kyoto/Animation/CMetaTransFactory.hpp

14 lines
259 B
C++
Raw Normal View History

2022-12-09 19:13:47 +00:00
#ifndef _CMETATRANSFACTORY
#define _CMETATRANSFACTORY
2022-12-08 23:01:45 +00:00
#include "rstl/rc_ptr.hpp"
class IMetaTrans;
class CInputStream;
class CMetaTransFactory {
public:
static rstl::rc_ptr< IMetaTrans > CreateMetaTrans(CInputStream& in);
};
2022-12-09 19:13:47 +00:00
#endif // _CMETATRANSFACTORY