mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-10 17:29:13 +00:00
11 lines
149 B
C++
11 lines
149 B
C++
#pragma once
|
|
|
|
namespace al {
|
|
class AreaShape;
|
|
|
|
template <typename T>
|
|
AreaShape* createAreaShapeFunction() {
|
|
return new T();
|
|
}
|
|
} // namespace al
|