1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-29 23:07:48 +02:00
This commit is contained in:
Laserlicht
2023-11-16 02:58:43 +01:00
committed by GitHub
parent 05efb12d82
commit 2cfbcd067b
10 changed files with 37 additions and 1 deletions

View File

@@ -34,6 +34,8 @@ class CTutorialWindow : public CWindowObject
std::shared_ptr<CLabel> labelTitle;
std::shared_ptr<CMultiLineLabel> labelInformation;
std::string video;
void close();
void next();
void previous();
@@ -41,4 +43,8 @@ class CTutorialWindow : public CWindowObject
public:
CTutorialWindow(const TutorialMode & m);
static void openWindowFirstTime(const TutorialMode & m);
void show(Canvas & to) override;
void activate() override;
void deactivate() override;
};