Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SteamID"/> class.
 /// </summary>
 /// <param name="id">The 64bit integer to assign this SteamID from.</param>
 public SteamID( UInt64 id )
 {
     this.steamid = new BitVector64( id );
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SteamID"/> class.
 /// </summary>
 /// <param name="id">The 64bit integer to assign this SteamID from.</param>
 public SteamID(UInt64 id)
 {
     this.steamid = new BitVector64(id);
 }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GameID"/> class.
 /// </summary>
 /// <param name="id">The 64bit integer to assign this GameID from.</param>
 public GameID( UInt64 id )
 {
     gameid = new BitVector64( id );
 }
Пример #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GameID"/> class.
 /// </summary>
 /// <param name="id">The 64bit integer to assign this GameID from.</param>
 public GameID(UInt64 id)
 {
     gameid = new BitVector64(id);
 }
Пример #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GlobalID"/> class.
 /// </summary>
 /// <param name="gid">The GID value.</param>
 public GlobalID(ulong gid)
 {
     this.gidBits = new BitVector64(gid);
 }