mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-29 20:14:41 +00:00
23 lines
467 B
C++
23 lines
467 B
C++
#pragma once
|
|
|
|
#include <basis/seadTypes.h>
|
|
|
|
namespace al {
|
|
class ExecutorListLayoutUpdate;
|
|
class ExecutorListLayoutDrawBase;
|
|
|
|
class LayoutExecuteInfo {
|
|
public:
|
|
LayoutExecuteInfo();
|
|
void addUpdater(ExecutorListLayoutUpdate*);
|
|
void addDrawer(ExecutorListLayoutDrawBase*);
|
|
|
|
private:
|
|
s32 mUpdaterCount = 0;
|
|
ExecutorListLayoutUpdate* mUpdaters[2] = {};
|
|
s32 mDrawerCount = 0;
|
|
ExecutorListLayoutDrawBase* mDrawers[4] = {};
|
|
};
|
|
|
|
} // namespace al
|