mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 14:31:20 +00:00
14 lines
210 B
C++
14 lines
210 B
C++
#pragma once
|
|
|
|
#include "IOStreams.hpp"
|
|
#include "IMetaAnim.hpp"
|
|
|
|
namespace urde {
|
|
|
|
class CMetaAnimFactory {
|
|
public:
|
|
static std::shared_ptr<IMetaAnim> CreateMetaAnim(CInputStream& in);
|
|
};
|
|
|
|
} // namespace urde
|