Changeset 6736 in orxonox.OLD for trunk/src/world_entities/weapons/weapon.cc
- Timestamp:
- Jan 25, 2006, 9:28:18 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/weapons/weapon.cc
r6728 r6736 538 538 * tick signal for time dependent/driven stuff 539 539 */ 540 voidWeapon::tickW(float dt)540 bool Weapon::tickW(float dt) 541 541 { 542 542 //printf("%s ", stateToChar(this->currentState)); … … 550 550 { 551 551 this->currentState = WS_INACTIVE; 552 return ;552 return false; 553 553 } 554 554 else … … 561 561 } 562 562 } 563 tick(dt);563 return true; 564 564 } 565 565
Note: See TracChangeset
for help on using the changeset viewer.