2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 23:11:20 +00:00
metaforce/Runtime/IObjFactory.hpp
2016-04-12 20:07:23 -10:00

19 lines
238 B
C++

#ifndef __URDE_IOBJFACTORY_HPP__
#define __URDE_IOBJFACTORY_HPP__
#include <memory>
#include "RetroTypes.hpp"
namespace urde
{
class IObjFactory
{
public:
virtual ~IObjFactory() = default;
};
}
#endif // __URDE_IOBJFACTORY_HPP__