mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-29 20:14:41 +00:00
11 lines
175 B
C++
11 lines
175 B
C++
#pragma once
|
|
|
|
namespace al {
|
|
class LiveActor;
|
|
|
|
template <typename T>
|
|
LiveActor* createActorFunction(const char* actorName) {
|
|
return new T(actorName);
|
|
}
|
|
} // namespace al
|