aboutsummaryrefslogtreecommitdiff
path: root/engines/dreamweb/structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/dreamweb/structs.h')
-rw-r--r--engines/dreamweb/structs.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/engines/dreamweb/structs.h b/engines/dreamweb/structs.h
index c0d5636538..7c9d9a5814 100644
--- a/engines/dreamweb/structs.h
+++ b/engines/dreamweb/structs.h
@@ -228,7 +228,7 @@ struct Change {
uint8 type;
};
-struct Path {
+struct PathNode {
uint8 x;
uint8 y;
uint8 b2;
@@ -236,6 +236,16 @@ struct Path {
uint8 b4;
uint8 b5;
uint8 b6;
- uint8 b7;
+ uint8 dir;
+};
+
+struct PathSegment {
+ uint8 b0;
+ uint8 b1;
+};
+
+struct RoomPaths {
+ PathNode nodes[12];
+ PathSegment segments[24];
};