dmuratshin 9 years ago
parent
commit
e39c12331e
1 changed files with 5 additions and 0 deletions
  1. 5 0
      oxygine/src/UpdateState.h

+ 5 - 0
oxygine/src/UpdateState.h

@@ -8,8 +8,13 @@ namespace oxygine
     public:
         UpdateState(): time(0), dt(0), iteration(0) {}
 
+        /**local time*/
         timeMS time;
+
+        /**delta time since last update*/
         timeMS dt;
+
+        /**current iteration, used with fixed Clock update */
         int iteration;
     };
 }