Changeset 3649 in orxonox.OLD for orxonox/trunk/src/world_entities/world_entity.cc
- Timestamp:
- Mar 24, 2005, 5:13:20 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/world_entity.cc
r3608 r3649 170 170 Handle all stuff that should update with time inside this method (movement, animation, etc.) 171 171 */ 172 void WorldEntity::tick(float time)172 inline void WorldEntity::tick(float time) 173 173 { 174 174 } … … 180 180 This is a central function of an entity: call it to let the entity painted to the screen. Just override this function with whatever you want to be drawn. 181 181 */ 182 void WorldEntity::draw()182 inline void WorldEntity::draw() 183 183 {} 184 184
Note: See TracChangeset
for help on using the changeset viewer.