Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 18, 2008, 12:27:16 PM (16 years ago)
Author:
rgrieder
Message:
  • implemented a new main loop, calling the ticks and the timers. —> removed the (Timer/Tick)FrameListener and displaced the code to Orxonox.cc (don't like it yet)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/input/src/orxonox/objects/Tickable.h

    r871 r900  
    3535    Attention:
    3636    Classes derived from a Tickable that want to have a tick(dt) function on their part, MUST call the
    37     parent::tick(dt) function explicit in their implementation of tick(dt) because it's a virtual function.
     37    parent::tick(dt) function explicitly in their implementation of tick(dt) because it's a virtual function.
    3838*/
    3939
     
    4848namespace orxonox
    4949{
    50     class TickFrameListener; // Forward declaration
     50    //class TickFrameListener; // Forward declaration
    5151
    5252    //! The Tickable interface provides a tick(dt) function, that gets called every frame.
     
    6464    };
    6565
     66#if 0
    6667    //! The TickFrameListener calls the tick(dt) function of all Tickables every frame.
    6768    class _OrxonoxExport TickFrameListener : public Ogre::FrameListener
     
    7879            }
    7980    };
     81#endif
    8082}
    8183
Note: See TracChangeset for help on using the changeset viewer.