- Timestamp:
- Oct 2, 2009, 9:11:35 PM (15 years ago)
- Location:
- code/branches/core5/src/orxonox
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/src/orxonox/OrxonoxPrereqs.h
r5858 r5862 116 116 class GametypeMessageListener; 117 117 class NotificationListener; 118 class PawnListener;119 118 class PlayerTrigger; 120 119 class RadarListener; -
code/branches/core5/src/orxonox/interfaces/InterfaceCompilation.cc
r5738 r5862 34 34 35 35 #include "GametypeMessageListener.h" 36 #include "PawnListener.h"37 36 #include "PlayerTrigger.h" 38 37 #include "RadarListener.h" … … 51 50 { 52 51 RegisterRootObject(GametypeMessageListener); 53 }54 55 //----------------------------56 // PawnListener57 //----------------------------58 /**59 @brief Constructor for the PawnListener.60 */61 PawnListener::PawnListener()62 {63 RegisterRootObject(PawnListener);64 52 } 65 53 -
code/branches/core5/src/orxonox/worldentities/pawns/Pawn.cc
r5801 r5862 36 36 #include "network/NetworkFunction.h" 37 37 38 #include "interfaces/PawnListener.h"39 38 #include "PawnManager.h" 40 39 #include "infos/PlayerInfo.h" … … 93 92 if (this->isInitialized()) 94 93 { 95 for (ObjectList<PawnListener>::iterator it = ObjectList<PawnListener>::begin(); it != ObjectList<PawnListener>::end(); ++it)96 it->destroyedPawn(this);97 98 94 if (this->weaponSystem_) 99 95 this->weaponSystem_->destroy();
Note: See TracChangeset
for help on using the changeset viewer.