Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 19, 2009, 10:34:54 AM (16 years ago)
Author:
rgrieder
Message:

Renaming "tick" to "update" for all those classes not inheriting from Tickable to avoid confusions.
GameState::ticked still exists, but that's going to change anyway.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/src/core/Core.cc

    r2799 r2800  
    563563    }
    564564
    565     void Core::tick(const Clock& time)
    566     {
    567         this->tclThreadManager_->tick(time.getDeltaTime());
     565    void Core::update(const Clock& time)
     566    {
     567        this->tclThreadManager_->update(time);
    568568    }
    569569}
Note: See TracChangeset for help on using the changeset viewer.