public LootOwner Read(DAIIO io) { xLength = io.ReadBit2(LengthBits); BluePrint = new BluePrint().Read(io); IndexUsedByUniqueId = io.ReadInt32(); TransForm = new byte[4][]; for (int i = 0; i < 4; i++) { TransForm[i] = new byte[0xc]; for (int j = 0; j < 0xc; j++) { TransForm[i][j] = (byte)io.ReadByte(); } } return(this); }