1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-31 01:37:57 +00:00

some extra parameters for tours

This commit is contained in:
Zeno Rogue
2025-06-22 15:51:59 +02:00
parent 8fca46ded1
commit e29cf996fa
2 changed files with 6 additions and 1 deletions

View File

@@ -25,6 +25,9 @@ EX bool on;
/** \brief should the presentation texts be shown */
EX bool texts = true;
/** \brief helps to automatize interactive presentations */
EX int tour_value;
EX string tourhelp;
/** \brief index of the current slide */
@@ -35,7 +38,7 @@ EX int currentslide;
enum presmode {
pmStartAll = 0,
pmStart = 1, pmFrame = 2, pmStop = 3, pmKey = 4, pmRestart = 5,
pmAfterFrame = 6, pmHelpEx = 7,
pmAfterFrame = 6, pmHelpEx = 7, pmKeyAlt = 8, pmKeyAlt2 = 9,
pmGeometry = 11, pmGeometryReset = 13, pmGeometryStart = 15,
pmGeometrySpecial = 16
};