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,14 +11,22 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class bGPDframe {
[DNAFieldAttribute(0, "bGPDframe", "*next", 56)]
public bGPDframe ptr_next;
[DNAFieldAttribute(1, "bGPDframe", "*prev", 56)]
public bGPDframe ptr_prev;
[DNAFieldAttribute(2, "ListBase", "strokes", 16)]
public ListBase strokes;
[DNAFieldAttribute(3, "int", "framenum", 4)]
public int framenum;
[DNAFieldAttribute(4, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(5, "short", "key_type", 2)]
public short key_type;
[DNAFieldAttribute(6, "bGPDframe_Runtime", "runtime", 16)]
public bGPDframe_Runtime runtime;
public bGPDframe(bGPDframe ptr_next, bGPDframe ptr_prev, ListBase strokes, int framenum, short flag, short key_type, bGPDframe_Runtime runtime) {
this.ptr_next = ptr_next;