OdysseyDecomp/lib/al/Library/Area/AreaShapeFactory.h
2026-05-08 12:59:41 +02:00

15 lines
282 B
C++

#pragma once
#include "Library/Factory/Factory.h"
namespace al {
class AreaShape;
using AreaShapeCreatorFunction = AreaShape* (*)();
class AreaShapeFactory : public Factory<AreaShapeCreatorFunction> {
public:
AreaShapeFactory(const char* factoryName);
};
} // namespace al