Reads the Int4 from the binary stream. The stream. The value.
(this BinaryReader stream)
| 536 | /// <param name="stream">The stream.</param> |
| 537 | /// <returns>The value.</returns> |
| 538 | public static Int4 ReadInt4(this BinaryReader stream) |
| 539 | { |
| 540 | return new Int4(stream.ReadInt32(), stream.ReadInt32(), stream.ReadInt32(), stream.ReadInt32()); |
| 541 | } |
| 542 | |
| 543 | /// <summary> |
| 544 | /// Reads the Quaternion from the binary stream. |