mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-29 12:04:09 +00:00
27 lines
533 B
C++
27 lines
533 B
C++
#pragma once
|
|
|
|
#include <basis/seadTypes.h>
|
|
#include <container/seadPtrArray.h>
|
|
|
|
#include "Library/Execute/ExecutorListBase.h"
|
|
|
|
namespace al {
|
|
class FunctorBase;
|
|
|
|
class ExecutorListFunctor : public ExecutorListBase {
|
|
public:
|
|
ExecutorListFunctor(const char* name, s32 size);
|
|
|
|
bool isActive() const override;
|
|
void executeList() const override;
|
|
|
|
void registerFunctor(const FunctorBase& functor);
|
|
|
|
private:
|
|
sead::PtrArray<FunctorBase> mList;
|
|
};
|
|
|
|
static_assert(sizeof(ExecutorListFunctor) == 0x20);
|
|
|
|
} // namespace al
|