29 lines
1.2 KiB
C#
29 lines
1.2 KiB
C#
// 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;
|
|
}
|
|
}
|
|
}
|