//------------------------------------------------------------------------------ // // 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 System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(35, "AssetMetaData")] public class AssetMetaData { [DNAFieldAttribute(0, "AssetTypeInfo", "*local_type_info", "AssetTypeInfo", 4, true)] public AssetTypeInfo ptr_local_type_info; [DNAFieldAttribute(1, "IDProperty", "*properties", "IDProperty", 4, true)] public IDProperty ptr_properties; [DNAFieldAttribute(2, "bUUID", "catalog_id", "bUUID", 16, false)] public bUUID catalog_id; [DNAFieldAttribute(3, "char", "catalog_simple_name[64]", "System.Char[]", 64, false)] public char[] catalog_simple_name = new System.Char[64]; [DNAFieldAttribute(4, "char", "*author", "char", 4, true)] public char ptr_author; [DNAFieldAttribute(5, "char", "*description", "char", 4, true)] public char ptr_description; [DNAFieldAttribute(6, "char", "*copyright", "char", 4, true)] public char ptr_copyright; [DNAFieldAttribute(7, "char", "*license", "char", 4, true)] public char ptr_license; [DNAFieldAttribute(8, "ListBase", "tags", "ListBase", 16, false)] public ListBase tags; [DNAFieldAttribute(9, "short", "active_tag", "short", 2, false)] public short active_tag; [DNAFieldAttribute(10, "short", "tot_tags", "short", 2, false)] public short tot_tags; [DNAFieldAttribute(11, "char", "_pad[4]", "System.Char[]", 4, false)] public char[] _pad = new System.Char[4]; public AssetMetaData() { this.ptr_local_type_info = default; this.ptr_properties = default; this.catalog_id = default; this.catalog_simple_name = default; this.ptr_author = default; this.ptr_description = default; this.ptr_copyright = default; this.ptr_license = default; this.tags = default; this.active_tag = default; this.tot_tags = default; this._pad = default; } public AssetMetaData(AssetTypeInfo ptr_local_type_info, IDProperty ptr_properties, bUUID catalog_id, char[] catalog_simple_name, char ptr_author, char ptr_description, char ptr_copyright, char ptr_license, ListBase tags, short active_tag, short tot_tags, char[] _pad) { this.ptr_local_type_info = ptr_local_type_info; this.ptr_properties = ptr_properties; this.catalog_id = catalog_id; this.catalog_simple_name = catalog_simple_name; this.ptr_author = ptr_author; this.ptr_description = ptr_description; this.ptr_copyright = ptr_copyright; this.ptr_license = ptr_license; this.tags = tags; this.active_tag = active_tag; this.tot_tags = tot_tags; this._pad = _pad; } } }