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