OdysseyDecomp/lib/al/Library/Execute/ActorExecuteInfo.cpp
2024-08-31 10:46:20 +02:00

16 lines
429 B
C++

#include "Library/Execute/ActorExecuteInfo.h"
namespace al {
ActorExecuteInfo::ActorExecuteInfo(ExecuteRequestKeeper* keeper) : mRequestKeeper(keeper) {}
void ActorExecuteInfo::addUpdater(ExecutorActorExecuteBase* updater) {
mUpdaters[mUpdaterCount] = updater;
mUpdaterCount++;
}
void ActorExecuteInfo::addDrawer(ModelDrawerBase* drawer) {
mDrawers[mDrawerCount] = drawer;
mDrawerCount++;
}
} // namespace al