mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-27 02:54:08 +00:00
16 lines
534 B
C++
16 lines
534 B
C++
#include "Library/MapObj/OneMeshFixMapParts.h"
|
|
|
|
#include "Library/LiveActor/ActorInitFunction.h"
|
|
#include "Library/Placement/PlacementFunction.h"
|
|
|
|
namespace al {
|
|
OneMeshFixMapParts::OneMeshFixMapParts(const char* name) : FixMapParts(name) {}
|
|
|
|
void OneMeshFixMapParts::init(const ActorInitInfo& info) {
|
|
const char* mapPartsName = nullptr;
|
|
getStringArg(&mapPartsName, info, "MapPartsName");
|
|
initMapPartsActorWithArchiveName(this, info, mapPartsName, nullptr);
|
|
trySyncStageSwitchAppearAndKill(this);
|
|
}
|
|
} // namespace al
|