mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-29 20:14:41 +00:00
16 lines
400 B
C++
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
|