ME3Explorer.Unreal.Classes.BrushComponent.ReadFaces C# (CSharp) Method

ReadFaces() public method

public ReadFaces ( byte raw ) : void
raw byte
return void
        public void ReadFaces(byte[] raw)
        {
            int count = GetArrayCount(raw);
            Faces = new int[count];
            for (int i = 0; i < count; i++)
                Faces[i] = BitConverter.ToInt32(raw, 28 + i * 4);
        }