mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 15:11:22 +00:00
11 lines
130 B
C++
11 lines
130 B
C++
#pragma once
|
|
|
|
namespace metaforce {
|
|
|
|
class IObjFactory {
|
|
public:
|
|
virtual ~IObjFactory() = default;
|
|
};
|
|
|
|
} // namespace metaforce
|