aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hopkins/globals.h')
-rw-r--r--engines/hopkins/globals.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/engines/hopkins/globals.h b/engines/hopkins/globals.h
index 263baafc19..4b77c2c4b2 100644
--- a/engines/hopkins/globals.h
+++ b/engines/hopkins/globals.h
@@ -165,9 +165,17 @@ struct BlocItem {
int y2;
};
+/**
+ * Mode for TriItem records
+ */
+enum TriMode { TRI_NONE = 0, TRI_BOB = 1, TRI_SPRITE = 2, TRI_CACHE = 3 };
+
+/**
+ * Structure to represent a pending display of either a Bob, Sprite, or Cache Item.
+ */
struct TriItem {
- int field0;
- int field2;
+ TriMode triMode;
+ int index;
int field4;
int field6;
};