Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 1, 2009, 2:03:05 AM (15 years ago)
Author:
landauf
Message:

merged libraries2 back to trunk

Location:
code/trunk
Files:
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/orxonox/interfaces/InterfaceCompilation.cc

    r5693 r5738  
    3535#include "GametypeMessageListener.h"
    3636#include "PawnListener.h"
     37#include "PlayerTrigger.h"
    3738#include "RadarListener.h"
    3839#include "Rewardable.h"
     
    8485    Rewardable::Rewardable()
    8586    {
    86         RegisterObject(Rewardable);
     87        RegisterRootObject(Rewardable);
    8788    }
    8889
     
    9293    NotificationListener::NotificationListener()
    9394    {
    94         RegisterObject(NotificationListener);
     95        RegisterRootObject(NotificationListener);
     96    }
     97
     98    //----------------------------
     99    // PlayerTrigger
     100    //----------------------------
     101    PlayerTrigger::PlayerTrigger()
     102    {
     103        RegisterRootObject(PlayerTrigger);
     104
     105        this->player_ = NULL;
     106        this->isForPlayer_ = true;
    95107    }
    96108}
  • code/trunk/src/orxonox/interfaces/RadarViewable.cc

    r5693 r5738  
    3636#include "core/CoreIncludes.h"
    3737#include "tools/DynamicLines.h"
    38 #include "objects/worldentities/WorldEntity.h"
    39 #include "objects/Radar.h"
    40 #include "Map.h"
     38#include "worldentities/WorldEntity.h"
     39#include "Radar.h"
     40#include "overlays/Map.h"
    4141
    4242namespace orxonox
Note: See TracChangeset for help on using the changeset viewer.