mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-25 10:12:00 +00:00
9 lines
122 B
C++
9 lines
122 B
C++
#ifndef _CIOBJFACTORY
|
|
#define _CIOBJFACTORY
|
|
|
|
class IObjFactory {
|
|
virtual ~IObjFactory() {};
|
|
};
|
|
|
|
#endif // _CIOBJFACTORY
|