13 lines
272 B
C#
13 lines
272 B
C#
|
using System.IO;
|
||
|
using System.Numerics;
|
||
|
|
||
|
namespace KeepersCompound.LGS;
|
||
|
|
||
|
public static class Extensions
|
||
|
{
|
||
|
public static Vector3 ReadVec3(this BinaryReader reader)
|
||
|
{
|
||
|
return new Vector3(reader.ReadSingle(), reader.ReadSingle(), reader.ReadSingle());
|
||
|
}
|
||
|
}
|