Files
metaforce/Runtime/Character/CMetaAnimFactory.hpp
Phillip Stephens 9bae2f943e Rename everything
2021-04-10 01:42:06 -07:00

16 lines
265 B
C++

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