mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-06 15:27:40 +00:00
16 lines
392 B
C++
16 lines
392 B
C++
#include "Library/Execute/LayoutExecuteInfo.h"
|
|
|
|
namespace al {
|
|
LayoutExecuteInfo::LayoutExecuteInfo() {}
|
|
|
|
void LayoutExecuteInfo::addUpdater(ExecutorListLayoutUpdate* updater) {
|
|
mUpdaters[mUpdaterCount] = updater;
|
|
mUpdaterCount++;
|
|
}
|
|
|
|
void LayoutExecuteInfo::addDrawer(ExecutorListLayoutDrawBase* drawer) {
|
|
mDrawers[mDrawerCount] = drawer;
|
|
mDrawerCount++;
|
|
}
|
|
} // namespace al
|