Reads the Int2 from the binary stream. The stream. The value.
(this BinaryReader stream)
| 516 | /// <param name="stream">The stream.</param> |
| 517 | /// <returns>The value.</returns> |
| 518 | public static Int2 ReadInt2(this BinaryReader stream) |
| 519 | { |
| 520 | return new Int2(stream.ReadInt32(), stream.ReadInt32()); |
| 521 | } |
| 522 | |
| 523 | /// <summary> |
| 524 | /// Reads the Int3 from the binary stream. |