Changeset 10817 for code/branches/cpp11_v2/src/orxonox/infos
- Timestamp:
- Nov 19, 2015, 11:40:28 AM (10 years ago)
- Location:
- code/branches/cpp11_v2/src/orxonox/infos
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/orxonox/infos/Bot.h
r9667 r10817 45 45 void setConfigValues(); 46 46 47 inline bool isInitialized() const 47 inline bool isInitialized() const override 48 48 { return true; } 49 inline float getPing() const 49 inline float getPing() const override 50 50 { return 0; } 51 inline float getPacketLossRatio() const 51 inline float getPacketLossRatio() const override 52 52 { return 0; } 53 53 -
code/branches/cpp11_v2/src/orxonox/infos/HumanPlayer.h
r10624 r10817 45 45 void setConfigValues(); 46 46 47 bool isInitialized() const ;48 float getPing() const ;49 float getPacketLossRatio() const ;47 bool isInitialized() const override; 48 float getPing() const override; 49 float getPacketLossRatio() const override; 50 50 51 51 void setClientID(unsigned int clientID); 52 52 53 virtual void switchGametype(Gametype* gametype) ;53 virtual void switchGametype(Gametype* gametype) override; 54 54 55 55 inline void setHumanHUDTemplate(const std::string& name) -
code/branches/cpp11_v2/src/orxonox/infos/PlayerInfo.h
r10769 r10817 44 44 virtual ~PlayerInfo(); 45 45 46 virtual void changedName() ;46 virtual void changedName() override; 47 47 virtual void switchGametype(Gametype* gametype); 48 48
Note: See TracChangeset
for help on using the changeset viewer.