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