Changeset 1674 for code/branches/gui/src/core/GameState.cc
- Timestamp:
- Aug 28, 2008, 8:30:25 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gui/src/core/GameState.cc
r1672 r1674 34 34 35 35 #include "GameState.h" 36 #include <cassert>37 36 #include "Debug.h" 38 37 #include "Exception.h" … … 359 358 This method is not virtual! You cannot override it therefore. 360 359 */ 361 void GameState::tick( float dt, uint64_ttime)360 void GameState::tick(const Clock& time) 362 361 { 363 362 this->operation_.running = true; 364 this->ticked( dt,time);363 this->ticked(time); 365 364 this->operation_.running = false; 366 365 }
Note: See TracChangeset
for help on using the changeset viewer.