Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 2, 2008, 12:54:17 PM (16 years ago)
Author:
rgrieder
Message:

Test: replacing namespace network with namespace orxonox. network::packet —> orxonox::packet

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/orxonox/objects/gametypes/Gametype.cc

    r2086 r2112  
    9292        std::string message = player->getName() + " entered the game";
    9393        COUT(0) << message << std::endl;
    94         network::Host::Broadcast(message);
     94        Host::Broadcast(message);
    9595    }
    9696
     
    104104            std::string message = player->getName() + " left the game";
    105105            COUT(0) << message << std::endl;
    106             network::Host::Broadcast(message);
     106            Host::Broadcast(message);
    107107        }
    108108    }
     
    124124                std::string message = player->getOldName() + " changed name to " + player->getName();
    125125                COUT(0) << message << std::endl;
    126                 network::Host::Broadcast(message);
     126                Host::Broadcast(message);
    127127            }
    128128        }
Note: See TracChangeset for help on using the changeset viewer.