Changeset 2503 for code/branches/presentation/src/orxonox/objects/pickup
- Timestamp:
- Dec 17, 2008, 10:51:07 AM (16 years ago)
- Location:
- code/branches/presentation/src/orxonox/objects/pickup
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation/src/orxonox/objects/pickup/BaseItem.cc
r2500 r2503 3 3 4 4 5 #include "OrxonoxStableHeaders.h" 5 6 #include "BaseItem.h" 6 7 #include "core/CoreIncludes.h" -
code/branches/presentation/src/orxonox/objects/pickup/PickupSpawner.cc
r2500 r2503 1 #include "OrxonoxStableHeaders.h" 1 2 #include "PickupSpawner.h" 2 3 #include "BaseItem.h" … … 110 111 SUPER(PickupSpawner, changedActivity); 111 112 112 for (std::set<WorldEntity*>:: iterator it = this->getAttachedObjects().begin(); it != this->getAttachedObjects().end(); ++it)113 for (std::set<WorldEntity*>::const_iterator it = this->getAttachedObjects().begin(); it != this->getAttachedObjects().end(); ++it) 113 114 (*it)->setVisible(this->isActive()); 114 115 } -
code/branches/presentation/src/orxonox/objects/pickup/ShipEquipment.cc
r2500 r2503 1 #include "OrxonoxStableHeaders.h" 1 2 #include "BaseItem.h" 2 3 #include "ShipEquipment.h" … … 27 28 COUT(3) << "SWAP?" << endl; 28 29 //Abfrage- irgendne ifschleife... 29 if((checkSlot(item)->dropped(player))==true) ;30 if((checkSlot(item)->dropped(player))==true) 30 31 { 31 32 Equipment.insert ( std::pair<std::string, BaseItem*>(item->getName(),item) ); -
code/branches/presentation/src/orxonox/objects/pickup/Turbo.cc
r2500 r2503 1 #include "OrxonoxStableHeaders.h" 1 2 #include "Turbo.h" 2 3
Note: See TracChangeset
for help on using the changeset viewer.