mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-10 09:18:01 +00:00
15 lines
282 B
C++
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
|