Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6682 in orxonox.OLD for branches/network/src/util/state.h


Ignore:
Timestamp:
Jan 24, 2006, 11:15:46 PM (18 years ago)
Author:
patrick
Message:

network: less parenting algoritmics

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/util/state.h

    r6498 r6682  
    7373
    7474
     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
    7583
    7684 private:
     
    8795  static unsigned int           resX;              //!< The X Resolution of the screen.
    8896  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
    89100  };
    90101
Note: See TracChangeset for help on using the changeset viewer.