13 lines
233 B
C++
13 lines
233 B
C++
#ifndef MISSION_CORE_GENERICFACTORY_H_
|
|
#define MISSION_CORE_GENERICFACTORY_H_
|
|
|
|
class HealthTableIF;
|
|
|
|
namespace ObjectFactory {
|
|
|
|
void produceGenericObjects(HealthTableIF** healthTable);
|
|
|
|
}
|
|
|
|
#endif /* MISSION_CORE_GENERICFACTORY_H_ */
|