dmuratshin 9 년 전
부모
커밋
e39c12331e
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  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;
     };
 }