//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using BlendFile.CompatTypes; using System; namespace BlendFile.DNA { public struct FileAssetSelectParams { public FileSelectParams base_params; public AssetLibraryReference asset_library_ref; public short asset_catalog_visibility; public char[] _pad = new System.Char[6]; public bUUID catalog_id; public short import_type; public char[] _pad2 = new System.Char[6]; public FileAssetSelectParams(FileSelectParams base_params, AssetLibraryReference asset_library_ref, short asset_catalog_visibility, char[] _pad, bUUID catalog_id, short import_type, char[] _pad2) { this.base_params = base_params; this.asset_library_ref = asset_library_ref; this.asset_catalog_visibility = asset_catalog_visibility; this._pad = _pad; this.catalog_id = catalog_id; this.import_type = import_type; this._pad2 = _pad2; } } }