Changeset 6448 for code/branches/network2/src/orxonox/infos
- Timestamp:
- Jan 17, 2010, 11:37:48 AM (15 years ago)
- Location:
- code/branches/network2/src/orxonox/infos
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/network2/src/orxonox/infos/GametypeInfo.h
r5781 r6448 45 45 virtual ~GametypeInfo(); 46 46 47 void registerVariables();48 49 47 inline bool hasStarted() const 50 48 { return this->bStarted_; } … … 70 68 71 69 private: 70 void registerVariables(); 71 72 72 bool bStarted_; 73 73 bool bEnded_; -
code/branches/network2/src/orxonox/infos/HumanPlayer.h
r5781 r6448 43 43 virtual ~HumanPlayer(); 44 44 45 void registerVariables();46 45 void setConfigValues(); 47 46 … … 101 100 std::string gametypeHudTemplate_; 102 101 OverlayGroup* gametypeHud_; 102 private: 103 void registerVariables(); 103 104 }; 104 105 } -
code/branches/network2/src/orxonox/infos/PlayerInfo.h
r6417 r6448 42 42 PlayerInfo(BaseObject* creator); 43 43 virtual ~PlayerInfo(); 44 45 void registerVariables();46 44 47 45 virtual void changedName(); … … 91 89 92 90 private: 91 void registerVariables(); 93 92 void networkcallback_changedcontrollableentityID(); 94 93 void networkcallback_changedgtinfoID();
Note: See TracChangeset
for help on using the changeset viewer.