mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 15:11:22 +00:00
16 lines
273 B
C++
16 lines
273 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "Runtime/Streams/IOStreams.hpp"
|
|
#include "Runtime/Character/IMetaAnim.hpp"
|
|
|
|
namespace metaforce {
|
|
|
|
class CMetaAnimFactory {
|
|
public:
|
|
static std::shared_ptr<IMetaAnim> CreateMetaAnim(CInputStream& in);
|
|
};
|
|
|
|
} // namespace metaforce
|