Files
BlenderSharp/BlendFile/DNA/Script.cs
2025-01-22 17:40:14 +01:00

41 lines
1.5 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using BlendFile.CompatTypes;
using System;
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;
}
}
}