Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 19, 2008, 2:24:33 PM (16 years ago)
Author:
rgrieder
Message:

Moved all showsGraphics, hasServer, etc. functions from Settings class to Core class.
This was necessary to avoid circular dependencies.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/network/ClientConnectionListener.cc

    r1939 r1949  
    11#include "ClientConnectionListener.h"
    22#include "core/CoreIncludes.h"
    3 #include "Settings.h"
     3#include "core/Core.h"
    44
    55namespace network{
     
    1111
    1212  void ClientConnectionListener::getConnectedClients(){
    13     if(orxonox::Settings::showsGraphics())
     13    if(orxonox::Core::showsGraphics())
    1414      this->clientConnected(0); //server client id
    1515    ClientInformation *client = ClientInformation::getBegin();
Note: See TracChangeset for help on using the changeset viewer.