aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/resources.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2015-01-14 00:20:45 -0500
committerPaul Gilbert2015-01-14 00:20:45 -0500
commit2b78d5190b6b734fbf24ab533cef0c8f427cbe0f (patch)
tree5608dbeb50b176239d2f5a9f3b91e13b54dbc80a /engines/xeen/resources.cpp
parenta856e58ee41505db36e208389d5931952540ca84 (diff)
downloadscummvm-rg350-2b78d5190b6b734fbf24ab533cef0c8f427cbe0f.tar.gz
scummvm-rg350-2b78d5190b6b734fbf24ab533cef0c8f427cbe0f.tar.bz2
scummvm-rg350-2b78d5190b6b734fbf24ab533cef0c8f427cbe0f.zip
XEEN: Implementing drawIndoors
Diffstat (limited to 'engines/xeen/resources.cpp')
-rw-r--r--engines/xeen/resources.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/engines/xeen/resources.cpp b/engines/xeen/resources.cpp
index 5740a419bd..e56ad1656e 100644
--- a/engines/xeen/resources.cpp
+++ b/engines/xeen/resources.cpp
@@ -432,4 +432,18 @@ const byte WALL_NUMBERS[4][96] = {
}
};
+const int DRAW_NUMBERS[25] = {
+ 36, 37, 38, 43, 42, 41, 39, 20, 22, 24, 33, 31, 29, 26, 10, 11,
+ 18, 16, 13, 5, 9, 6, 0, 4, 1
+};
+
+const int DRAW_FRAMES[25][2] = {
+ { 18, 24 }, { 19, 23 }, { 20, 22 }, { 10, 24 }, { 19, 23 }, { 20, 22 },
+ { 21, 21 }, { 11, 17 }, { 12, 16 }, { 13, 15 }, { 11, 17 }, { 12, 16 },
+ { 13, 15 }, { 14, 14 }, { 6, 10 }, { 7, 9 }, { 6, 10 }, { 7, 9 },
+ { 8, 8 }, { 3, 5 }, { 3, 5 }, { 4, 4 }, { 0, 2 }, { 0, 2 },
+ { 1, 1 }
+};
+
+
} // End of namespace Xeen