Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

28
BlendFile/DNA/Script.cs Normal file
View File

@@ -0,0 +1,28 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class Script {
public ID id;
public object ptr_py_draw;
public object ptr_py_event;
public object ptr_py_button;
public object ptr_py_browsercallback;
public object ptr_py_globaldict;
public int flags;
public int lastspace;
public char[] scriptname = new System.Char[1024];
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;
this.ptr_py_draw = ptr_py_draw;
this.ptr_py_event = ptr_py_event;
this.ptr_py_button = ptr_py_button;
this.ptr_py_browsercallback = ptr_py_browsercallback;
this.ptr_py_globaldict = ptr_py_globaldict;
this.flags = flags;
this.lastspace = lastspace;
this.scriptname = scriptname;
this.scriptarg = scriptarg;
}
}
}