Changeset 6695 in orxonox.OLD for trunk/src/util
- Timestamp:
- Jan 25, 2006, 2:39:53 PM (19 years ago)
- Location:
- trunk/src/util
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/state.cc
r6498 r6695 41 41 Player* State::player = NULL; 42 42 43 bool State::bOnline = false; 43 44 44 45 /** -
trunk/src/util/state.h
r6498 r6695 73 73 74 74 75 /////////////// 76 /// NETWORK /// 77 /////////////// 78 /** sets the online stat (multiplayer network) @param bOnline is true if node is online */ 79 static inline void setOnline(bool bOnline) { State::bOnline = bOnline; } 80 /** @returns true if this node is online (multiplayer network game) */ 81 static bool isOnline() { return State::bOnline; } 82 75 83 76 84 private: … … 87 95 static unsigned int resX; //!< The X Resolution of the screen. 88 96 static unsigned int resY; //!< The Y Resolution of the screen. 97 98 static bool bOnline; //!< Is true if this node is in multiplayer mode (via network) 99 89 100 }; 90 101
Note: See TracChangeset
for help on using the changeset viewer.