mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-19 01:35:14 +00:00
12 lines
No EOL
307 B
C++
12 lines
No EOL
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);
|
|
};
|
|
} |