Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 28, 2009, 2:45:37 PM (15 years ago)
Author:
rgrieder
Message:

Found a way to write orxonox_cast<T*> instead of orxonox_cast<T> so that the syntax resembles dynamic_cast<T*>.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core4/src/orxonox/objects/weaponsystem/projectiles/Projectile.cc

    r3223 r3239  
    126126                dmg = this->owner_->getPickups().processModifiers(ModifierType::Damage, dmg, false);
    127127
    128             Pawn* victim = orxonox_cast<Pawn>(otherObject);
     128            Pawn* victim = orxonox_cast<Pawn*>(otherObject);
    129129            if (victim)
    130130                victim->damage(dmg, this->owner_);
Note: See TracChangeset for help on using the changeset viewer.