OdysseyDecomp/lib/al/Library/LiveActor/ActorInitResourceData.cpp
2024-06-13 21:10:45 +02:00

10 lines
320 B
C++

#include "Library/LiveActor/ActorInitResourceData.h"
namespace al {
ActorInitResourceData::ActorInitResourceData(Resource* res) : mResource(res) {
mResDataAnim = InitResourceDataAnim::tryCreate(res, nullptr);
mResDataAction = InitResourceDataAction::tryCreate(res, mResDataAnim, nullptr);
}
} // namespace al