OdysseyDecomp/lib/al/Library/Execute/LayoutExecuteInfo.cpp

16 lines
400 B
C++

#include "Library/Execute/LayoutExecuteInfo.h"
namespace al {
LayoutExecuteInfo::LayoutExecuteInfo() = default;
void LayoutExecuteInfo::addUpdater(ExecutorListLayoutUpdate* updater) {
mUpdaters[mUpdaterCount] = updater;
mUpdaterCount++;
}
void LayoutExecuteInfo::addDrawer(ExecutorListLayoutDrawBase* drawer) {
mDrawers[mDrawerCount] = drawer;
mDrawerCount++;
}
} // namespace al