Esempio n. 1
0
 /// <summary>
 /// Writes Wow Object Guid into the current stream and advances
 /// the current position of the stream by 8 bytes.
 /// </summary>
 public static void WriteGuid(this StreamHandler Writer, WowGuid guid)
 {
     Writer.WriteUInt64(guid.Raw);
 }
Esempio n. 2
0
 /// <summary>
 /// Writes the packed Guid into the current stream and advances
 /// the current position of the stream by packed Guid size.
 /// </summary>
 public static void WritePackedGuid(this StreamHandler Writer, WowGuid objGuid)
 {
     Writer.WritePackedValue(objGuid.Raw);
 }