comparison Time.h @ 35:7022d20db19f

Слияние
author Ritor1
date Tue, 16 Oct 2012 09:10:55 +0600
parents 93bf1d5f6a6d
children
comparison
equal deleted inserted replaced
34:77da38f82079 35:7022d20db19f
7 { 7 {
8 static Timer *Create() {return new Timer;} 8 static Timer *Create() {return new Timer;}
9 9
10 Timer(): 10 Timer():
11 bReady(false), bPaused(false) 11 bReady(false), bPaused(false)
12 {} 12 {
13 bTackGameTime = 0;
14 uStartTime = 0;
15 uStopTime = 0;
16 uGameTimeStart = 0;
17 field_18 = 0;
18 uTimeElapsed = 0;
19 dt_in_some_format = 0;
20 uTotalGameTimeElapsed = 0;
21 }
13 22
14 void Initialize(); 23 void Initialize();
15 unsigned __int64 Time(); 24 unsigned __int64 Time();
16 int Update(); 25 int Update();
17 void Pause(); 26 void Pause();