Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 640


Ignore:
Timestamp:
Dec 19, 2007, 2:14:47 AM (16 years ago)
Author:
landauf
Message:

improved documentation :D

Location:
code/branches/FICN/src/orxonox/objects
Files:
2 edited

Legend:

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

    r496 r640  
    44
    55    The Tickable interface provides a tick(dt) function, that gets called every frame.
    6     float dt is the time since the last frame.
     6    float dt is the time since the last frame in seconds.
    77
    88    Attention:
     
    2727            /**
    2828                @brief Gets called every frame.
    29                 @param dt The time since the last frame
     29                @param dt The time since the last frame in seconds
    3030            */
    3131            virtual void tick(float dt) = 0;
  • code/branches/FICN/src/orxonox/objects/Timer.h

    r496 r640  
    1212                ClassName();
    1313                void functionName();
    14                 Timer myTimer;
     14                Timer<ClassName> myTimer;
    1515        };
    1616
Note: See TracChangeset for help on using the changeset viewer.