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,18 +11,30 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class IDProperty {
[DNAFieldAttribute(0, "IDProperty", "*next", 136)]
public IDProperty ptr_next;
[DNAFieldAttribute(1, "IDProperty", "*prev", 136)]
public IDProperty ptr_prev;
[DNAFieldAttribute(2, "char", "type", 1)]
public char type;
[DNAFieldAttribute(3, "char", "subtype", 1)]
public char subtype;
[DNAFieldAttribute(4, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(5, "char", "name[64]", 1)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(6, "char", "_pad0[4]", 1)]
public char[] _pad0 = new System.Char[4];
[DNAFieldAttribute(7, "IDPropertyData", "data", 32)]
public IDPropertyData data;
[DNAFieldAttribute(8, "int", "len", 4)]
public int len;
[DNAFieldAttribute(9, "int", "totallen", 4)]
public int totallen;
[DNAFieldAttribute(10, "IDPropertyUIData", "*ui_data", 16)]
public IDPropertyUIData ptr_ui_data;
public IDProperty(IDProperty ptr_next, IDProperty ptr_prev, char type, char subtype, short flag, char[] name, char[] _pad0, IDPropertyData data, int len, int totallen, IDPropertyUIData ptr_ui_data) {
this.ptr_next = ptr_next;