aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/object.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hugo/object.h')
-rw-r--r--engines/hugo/object.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/hugo/object.h b/engines/hugo/object.h
index 84c20db041..8f8043dbbc 100644
--- a/engines/hugo/object.h
+++ b/engines/hugo/object.h
@@ -35,14 +35,14 @@
namespace Hugo {
struct target_t { // Secondary target for action
- uint16 nounIndex; // Secondary object
- uint16 verbIndex; // Action on secondary object
+ uint16 _nounIndex; // Secondary object
+ uint16 _verbIndex; // Action on secondary object
};
struct uses_t { // Define uses of certain objects
- int16 objId; // Primary object
- uint16 dataIndex; // String if no secondary object matches
- target_t *targets; // List of secondary targets
+ int16 _objId; // Primary object
+ uint16 _dataIndex; // String if no secondary object matches
+ target_t *_targets; // List of secondary targets
};
class ObjectHandler {