mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-29 20:14:41 +00:00
18 lines
316 B
C++
18 lines
316 B
C++
#include "Library/Sequence/Sequence.h"
|
|
|
|
namespace al {
|
|
|
|
Sequence::Sequence(const char* name) : NerveExecutor(name), mName(name) {}
|
|
|
|
void Sequence::init(const SequenceInitInfo& initInfo) {}
|
|
|
|
void Sequence::kill() {
|
|
mIsAlive = false;
|
|
}
|
|
|
|
bool Sequence::isDisposable() const {
|
|
return true;
|
|
}
|
|
|
|
} // namespace al
|