Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 3, 2006, 12:19:30 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/weapons/targeting_turret.h

    r9656 r9869  
    1212class TargetingTurret : public Weapon
    1313{
     14  ObjectListDeclaration(TargetingTurret);
    1415public:
    1516  TargetingTurret(const TiXmlElement* root = NULL);
     
    2627  virtual void draw() const;
    2728
    28   void setTargetGroup(OM_LIST targetGroup) { this->target.setTargetGroup(targetGroup); };
     29  void setTargetGroup(OM_LIST targetGroup) { this->target->setTargetGroup(targetGroup); };
    2930  const PNode* getLockedTarget() const { return lockedTarget; };
    3031
     
    3334
    3435private:
    35   Aim            target;
     36  Aim*           target;
    3637  PNode*         lockedTarget;
    3738  float          lockedTime;
Note: See TracChangeset for help on using the changeset viewer.