Glare.ExtensionMethods.ReadArrayVector3s C# (CSharp) Method

ReadArrayVector3s() public static method

Read an array of Vector3s values.
public static ReadArrayVector3s ( this reader, int count ) : Vector3s[]
reader this
count int
return Vector3s[]
        public static Vector3s[] ReadArrayVector3s(this BinaryReader reader, int count)
        {
            Vector3s[] array = new Vector3s[count]; reader.ReadArray(array, 0, count); return array;
        }
ExtensionMethods