Changeset 6466 for code/branches/pickup3/src/orxonox/worldentities
- Timestamp:
- Mar 4, 2010, 11:56:26 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pickup3/src/orxonox/worldentities/pawns/Pawn.h
r6419 r6466 33 33 34 34 #include <string> 35 #include "interfaces/PickupCarrier.h" 35 36 #include "interfaces/RadarViewable.h" 36 37 #include "worldentities/ControllableEntity.h" 37 //TODO: Remove.38 //#include "pickup/PickupCollection.h"39 38 40 39 namespace orxonox 41 40 { 42 class _OrxonoxExport Pawn : public ControllableEntity, public RadarViewable 41 class _OrxonoxExport Pawn : public ControllableEntity, public RadarViewable, public PickupCarrier 43 42 { 44 43 friend class WeaponSystem; … … 139 138 //TODO: Remove. 140 139 //PickupCollection pickups_; 140 virtual const std::list<PickupCarrier*>* getChildren(void) 141 { return new std::list<PickupCarrier*>(); } 142 virtual PickupCarrier* getParent(void) 143 { return NULL; } 141 144 142 145 float health_;
Note: See TracChangeset
for help on using the changeset viewer.