Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 29, 2015, 6:45:20 PM (9 years ago)
Author:
landauf
Message:

no need to call get() on Weak or StrongPtr. they are automatically converted to normal pointers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core7/src/orxonox/worldentities/ControllableEntity.h

    r10555 r10558  
    155155
    156156            inline Controller* getController() const
    157                 { return this->controller_.get(); }
     157                { return this->controller_; }
    158158            void setController(Controller* val);
    159159
     
    161161            virtual void setTarget( WorldEntity* target );
    162162            virtual WorldEntity* getTarget()
    163                 { return this->target_.get(); }
     163                { return this->target_; }
    164164            void setTargetInternal( uint32_t targetID );
    165165
Note: See TracChangeset for help on using the changeset viewer.