public static PlayerDescription read(BinaryReader binaryReader)
        {
            PlayerDescription newObj = new PlayerDescription();

            newObj.CACQualities = CACQualities.read(binaryReader);
            newObj.PlayerModule = CM_Character.PlayerModule.read(binaryReader);
            newObj.clist        = PList <ContentProfile> .read(binaryReader);

            newObj.ilist = PList <InventoryPlacement> .read(binaryReader);

            return(newObj);
        }