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,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class MetaStack {
[DNAFieldAttribute(0, "MetaStack", "*next", 48)]
public MetaStack ptr_next;
[DNAFieldAttribute(1, "MetaStack", "*prev", 48)]
public MetaStack ptr_prev;
[DNAFieldAttribute(2, "ListBase", "*oldbasep", 16)]
public ListBase ptr_oldbasep;
[DNAFieldAttribute(3, "ListBase", "*old_channels", 16)]
public ListBase ptr_old_channels;
[DNAFieldAttribute(4, "Sequence", "*parseq", 464)]
public Sequence ptr_parseq;
[DNAFieldAttribute(5, "int", "disp_range[2]", 4)]
public int[] disp_range = new System.Int32[2];
public MetaStack(MetaStack ptr_next, MetaStack ptr_prev, ListBase ptr_oldbasep, ListBase ptr_old_channels, Sequence ptr_parseq, int[] disp_range) {
this.ptr_next = ptr_next;