Vector4s
public static Vector4s[] ReadArrayVector4s(this BinaryReader reader, int count) { Vector4s[] array = new Vector4s[count]; reader.ReadArray(array, 0, count); return array; }