2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 21:11:21 +00:00
metaforce/Runtime/IObjFactory.hpp
2018-10-06 17:42:33 -10:00

17 lines
150 B
C++

#pragma once
#include <memory>
#include "RetroTypes.hpp"
namespace urde
{
class IObjFactory
{
public:
virtual ~IObjFactory() = default;
};
}