aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/riven.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mohawk/riven.h')
-rw-r--r--engines/mohawk/riven.h18
1 files changed, 13 insertions, 5 deletions
diff --git a/engines/mohawk/riven.h b/engines/mohawk/riven.h
index 4cff24eb94..53789af3d7 100644
--- a/engines/mohawk/riven.h
+++ b/engines/mohawk/riven.h
@@ -25,6 +25,7 @@
#include "mohawk/installer_archive.h"
#include "mohawk/mohawk.h"
+#include "mohawk/riven_stack.h"
#include "mohawk/riven_scripts.h"
#include "common/hashmap.h"
@@ -63,11 +64,11 @@ enum {
// NAME Resource ID's
enum {
- CardNames = 1,
- HotspotNames = 2,
- ExternalCommandNames = 3,
- VariableNames = 4,
- StackNames = 5
+ kCardNames = 1,
+ kHotspotNames = 2,
+ kExternalCommandNames = 3,
+ kVariableNames = 4,
+ kStackNames = 5
};
enum RivenTransitionSpeed {
@@ -134,6 +135,13 @@ private:
uint16 _curStack;
void handleEvents();
+ // Stack resource names
+ RivenNameList _varNames;
+ RivenNameList _externalCommandNames;
+ RivenNameList _hotspotNames;
+ RivenNameList _cardNames;
+ RivenNameList _stackNames;
+
// Hotspot related functions and variables
void checkInventoryClick();
bool _showHotspots;