mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-28 14:13:04 +00:00
12 lines
307 B
C
12 lines
307 B
C
|
#pragma once
|
||
|
|
||
|
#include "al/nerve/NerveExecutor.h"
|
||
|
#include "al/audio/AudioKeeper.h"
|
||
|
#include "al/scene/SceneCreator.h"
|
||
|
|
||
|
namespace al {
|
||
|
class Sequence : public al::NerveExecutor, public al::IUseAudioKeeper, public al::IUseSceneCreator {
|
||
|
public:
|
||
|
Sequence(const char *seqName);
|
||
|
};
|
||
|
}
|