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,17 +11,28 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class Script {
[DNAFieldAttribute(0, "ID", "id", 208)]
public ID id;
[DNAFieldAttribute(1, "void", "*py_draw", 0)]
public object ptr_py_draw;
[DNAFieldAttribute(2, "void", "*py_event", 0)]
public object ptr_py_event;
[DNAFieldAttribute(3, "void", "*py_button", 0)]
public object ptr_py_button;
[DNAFieldAttribute(4, "void", "*py_browsercallback", 0)]
public object ptr_py_browsercallback;
[DNAFieldAttribute(5, "void", "*py_globaldict", 0)]
public object ptr_py_globaldict;
[DNAFieldAttribute(6, "int", "flags", 4)]
public int flags;
[DNAFieldAttribute(7, "int", "lastspace", 4)]
public int lastspace;
[DNAFieldAttribute(8, "char", "scriptname[1024]", 1)]
public char[] scriptname = new System.Char[1024];
[DNAFieldAttribute(9, "char", "scriptarg[256]", 1)]
public char[] scriptarg = new System.Char[256];
public Script(ID id, object ptr_py_draw, object ptr_py_event, object ptr_py_button, object ptr_py_browsercallback, object ptr_py_globaldict, int flags, int lastspace, char[] scriptname, char[] scriptarg) {
this.id = id;