]> git.mxchange.org Git - flightgear.git/blobdiff - src/Scenery/tileentry.hxx
Patch from Julian Foad:
[flightgear.git] / src / Scenery / tileentry.hxx
index d29f761b01a25f28116f065b97677d480b8b0a1a..e315d515071cb97c50b0bb5b029ffddce5fe3827 100644 (file)
@@ -190,6 +190,8 @@ private:
 
     ssgLeaf* gen_lights( ssgVertexArray *lights, int inc, float bright );
 
+    double timestamp;
+
 public:
 
     // ADA --->
@@ -272,6 +274,11 @@ public:
      * return the SSG Transform node for the terrain
      */
     inline ssgTransform *get_terra_transform() { return terra_transform; }
+
+    void set_timestamp(double time_ms) { timestamp = time_ms; }
+
+    inline double get_timestamp() const { return timestamp; }
+
 };