aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cryo/defs.h')
-rw-r--r--engines/cryo/defs.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/cryo/defs.h b/engines/cryo/defs.h
index 1cbd54ca83..01e94572d5 100644
--- a/engines/cryo/defs.h
+++ b/engines/cryo/defs.h
@@ -825,10 +825,16 @@ struct cubeface_t {
int16 *_uv;
};
+struct Projection {
+ int16 x;
+ int16 y;
+ int16 z;
+};
+
struct cube_t {
int _num;
cubeface_t **_faces;
- int16 *_projection; // projected XYZ coords
+ Projection *_projection; // projected XYZ coords
int16 *_vertices;
};