2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 09:11:21 +00:00
metaforce/Runtime/Character/CMetaAnimFactory.hpp
2018-10-06 17:42:33 -10:00

17 lines
195 B
C++

#pragma once
#include "IOStreams.hpp"
#include "IMetaAnim.hpp"
namespace urde
{
class CMetaAnimFactory
{
public:
static std::shared_ptr<IMetaAnim> CreateMetaAnim(CInputStream& in);
};
}