Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

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