mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-29 20:14:41 +00:00
20 lines
316 B
C++
20 lines
316 B
C++
#pragma once
|
|
|
|
namespace al {
|
|
|
|
class ExecutorListBase {
|
|
public:
|
|
ExecutorListBase(const char* name);
|
|
|
|
virtual ~ExecutorListBase();
|
|
virtual void executeList() const;
|
|
virtual bool isActive() const;
|
|
|
|
private:
|
|
const char* mName;
|
|
};
|
|
|
|
static_assert(sizeof(ExecutorListBase) == 0x10);
|
|
|
|
} // namespace al
|