Beispiel #1
0
 public bool Finshed(TimerCom timerCom)
 {
     return(timerCom._currentTime < 1);
 }
Beispiel #2
0
 public void Reset(TimerCom timerCom)
 {
     Initlise(timerCom);
 }
Beispiel #3
0
 public void Calclate(TimerCom timerCom, double deltaTime)
 {
     timerCom._currentTime -= deltaTime;
 }
Beispiel #4
0
 public void Initlise(TimerCom timerCom)
 {
     timerCom._currentTime = timerCom.EndTime;
 }
Beispiel #5
0
 public bool Finshed(TimerCom timerCom)
 {
     return(timerCom._currentTime > timerCom.EndTime);
 }
Beispiel #6
0
 public void Initlise(TimerCom timerCom)
 {
     timerCom._currentTime = 0;
 }