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