Reads the Int3 from the binary stream. The stream. The value.
(this BinaryReader stream)
| 526 | /// <param name="stream">The stream.</param> |
| 527 | /// <returns>The value.</returns> |
| 528 | public static Int3 ReadInt3(this BinaryReader stream) |
| 529 | { |
| 530 | return new Int3(stream.ReadInt32(), stream.ReadInt32(), stream.ReadInt32()); |
| 531 | } |
| 532 | |
| 533 | /// <summary> |
| 534 | /// Reads the Int4 from the binary stream. |