mirror of https://github.com/AxioDL/metaforce.git
19 lines
308 B
C++
19 lines
308 B
C++
|
#ifndef __PSHAG_CMETATRANSFACTORY_HPP__
|
||
|
#define __PSHAG_CMETATRANSFACTORY_HPP__
|
||
|
|
||
|
#include "IOStreams.hpp"
|
||
|
#include "IMetaTrans.hpp"
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
|
||
|
class CMetaTransFactory
|
||
|
{
|
||
|
public:
|
||
|
static std::shared_ptr<IMetaTrans> CreateMetaTrans(CInputStream& in);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __PSHAG_CMETATRANSFACTORY_HPP__
|