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 SpaceNla {
[DNAFieldAttribute(0, "SpaceLink", "*next", 40)]
public SpaceLink ptr_next;
[DNAFieldAttribute(1, "SpaceLink", "*prev", 40)]
public SpaceLink ptr_prev;
[DNAFieldAttribute(2, "ListBase", "regionbase", 16)]
public ListBase regionbase;
[DNAFieldAttribute(3, "char", "spacetype", 1)]
public char spacetype;
[DNAFieldAttribute(4, "char", "link_flag", 1)]
public char link_flag;
[DNAFieldAttribute(5, "char", "_pad0[6]", 1)]
public char[] _pad0 = new System.Char[6];
[DNAFieldAttribute(6, "short", "autosnap", 2)]
public short autosnap;
[DNAFieldAttribute(7, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(8, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(9, "bDopeSheet", "*ads", 112)]
public bDopeSheet ptr_ads;
[DNAFieldAttribute(10, "View2D", "v2d", 152)]
public View2D v2d;
public SpaceNla(SpaceLink ptr_next, SpaceLink ptr_prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0, short autosnap, short flag, char[] _pad, bDopeSheet ptr_ads, View2D v2d) {
this.ptr_next = ptr_next;