summaryrefslogtreecommitdiff
path: root/apps/graphics/traveler/include/trv_world.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/graphics/traveler/include/trv_world.h')
-rw-r--r--apps/graphics/traveler/include/trv_world.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/apps/graphics/traveler/include/trv_world.h b/apps/graphics/traveler/include/trv_world.h
index 939ec1820..3461fd792 100644
--- a/apps/graphics/traveler/include/trv_world.h
+++ b/apps/graphics/traveler/include/trv_world.h
@@ -60,6 +60,27 @@ struct trv_camera_s
};
/****************************************************************************
+ * Public Data
+ ****************************************************************************/
+/* This is the starting position and orientation of the camera in the world */
+
+extern struct trv_camera_s g_initial_camera;
+
+/* This is the height of player (distance from the camera Z position to
+ * the position of the player's "feet"
+ */
+
+extern trv_coord_t g_player_height;
+
+/* This is size of something that the player can step over when "walking" */
+
+extern trv_coord_t g_walk_stepheight;
+
+/* This is size of something that the player can step over when "running" */
+
+extern trv_coord_t g_run_stepheight;
+
+/****************************************************************************
* Public Function Prototypes
****************************************************************************/