mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 23:11:20 +00:00
19 lines
238 B
C++
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__
|