mirror of https://github.com/AxioDL/metaforce.git
19 lines
298 B
C++
19 lines
298 B
C++
#ifndef __URDE_CMETAANIMFACTORY_HPP__
|
|
#define __URDE_CMETAANIMFACTORY_HPP__
|
|
|
|
#include "IOStreams.hpp"
|
|
#include "IMetaAnim.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CMetaAnimFactory
|
|
{
|
|
public:
|
|
static std::shared_ptr<IMetaAnim> CreateMetaAnim(CInputStream& in);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CMETAANIMFACTORY_HPP__
|