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,16 +11,26 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class bToolRef {
[DNAFieldAttribute(0, "bToolRef", "*next", 168)]
public bToolRef ptr_next;
[DNAFieldAttribute(1, "bToolRef", "*prev", 168)]
public bToolRef ptr_prev;
[DNAFieldAttribute(2, "char", "idname[64]", 1)]
public char[] idname = new System.Char[64];
[DNAFieldAttribute(3, "char", "idname_fallback[64]", 1)]
public char[] idname_fallback = new System.Char[64];
[DNAFieldAttribute(4, "short", "tag", 2)]
public short tag;
[DNAFieldAttribute(5, "short", "space_type", 2)]
public short space_type;
[DNAFieldAttribute(6, "int", "mode", 4)]
public int mode;
[DNAFieldAttribute(7, "IDProperty", "*properties", 136)]
public IDProperty ptr_properties;
[DNAFieldAttribute(8, "bToolRef_Runtime", "*runtime", 0)]
public bToolRef_Runtime ptr_runtime;
public bToolRef(bToolRef ptr_next, bToolRef ptr_prev, char[] idname, char[] idname_fallback, short tag, short space_type, int mode, IDProperty ptr_properties, bToolRef_Runtime ptr_runtime) {
this.ptr_next = ptr_next;