diff options
Diffstat (limited to 'dev/a3-earthquake/quake_app.h')
-rw-r--r-- | dev/a3-earthquake/quake_app.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dev/a3-earthquake/quake_app.h b/dev/a3-earthquake/quake_app.h index 21d7a8d..bc8dcf9 100644 --- a/dev/a3-earthquake/quake_app.h +++ b/dev/a3-earthquake/quake_app.h @@ -54,13 +54,19 @@ private: // true if drawing debugging info for the mesh bool debug_mode_; + + // true if the earth is in globe mode + bool globe_mode_; // Database through which you can access the earthquakes EarthquakeDatabase quake_db_; // Object for rendering textured earth geometry Earth earth_; - + + float rotation_angle_; + float old_rotation_angle_; + // Background image Texture2D stars_tex_; |