dosgame1/scenes/IntroScene.h

20 lines
294 B
C++

#ifndef GAME_INTROSCENE_H
#define GAME_INTROSCENE_H
#include "Scene.h"
class IntroScene : public Scene {
public:
IntroScene() = default;
~IntroScene() override = default;
void run() override;
void enter() override;
void exit() override;
};
#endif //GAME_INTROSCENE_H