Changeset 10845 for code/branches/cpp11_v2/src/orxonox/infos
- Timestamp:
- Nov 23, 2015, 10:20:29 PM (9 years ago)
- Location:
- code/branches/cpp11_v2/src/orxonox/infos
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/orxonox/infos/Bot.h
r10817 r10845 45 45 void setConfigValues(); 46 46 47 inline bool isInitialized() const override47 virtual inline bool isInitialized() const override 48 48 { return true; } 49 inline float getPing() const override49 virtual inline float getPing() const override 50 50 { return 0; } 51 inline float getPacketLossRatio() const override51 virtual inline float getPacketLossRatio() const override 52 52 { return 0; } 53 53 -
code/branches/cpp11_v2/src/orxonox/infos/HumanPlayer.h
r10817 r10845 45 45 void setConfigValues(); 46 46 47 bool isInitialized() const override;48 float getPing() const override;49 float getPacketLossRatio() const override;47 virtual bool isInitialized() const override; 48 virtual float getPing() const override; 49 virtual float getPacketLossRatio() const override; 50 50 51 51 void setClientID(unsigned int clientID);
Note: See TracChangeset
for help on using the changeset viewer.