mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 12:31:22 +00:00
17 lines
199 B
C++
17 lines
199 B
C++
#pragma once
|
|
|
|
#include "IOStreams.hpp"
|
|
#include "IMetaTrans.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CMetaTransFactory
|
|
{
|
|
public:
|
|
static std::shared_ptr<IMetaTrans> CreateMetaTrans(CInputStream& in);
|
|
};
|
|
|
|
}
|
|
|