105 lines
3.9 KiB
C#
105 lines
3.9 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 System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
public class SpaceButs {
|
|
[DNAFieldAttribute(0, "SpaceLink", "*next", 40)]
|
|
public SpaceLink ptr_next;
|
|
[DNAFieldAttribute(1, "SpaceLink", "*prev", 40)]
|
|
public SpaceLink ptr_prev;
|
|
[DNAFieldAttribute(2, "ListBase", "regionbase", 16)]
|
|
public ListBase regionbase;
|
|
[DNAFieldAttribute(3, "char", "spacetype", 1)]
|
|
public char spacetype;
|
|
[DNAFieldAttribute(4, "char", "link_flag", 1)]
|
|
public char link_flag;
|
|
[DNAFieldAttribute(5, "char", "_pad0[6]", 1)]
|
|
public char[] _pad0 = new System.Char[6];
|
|
[DNAFieldAttribute(6, "View2D", "v2d", 152)]
|
|
public View2D v2d;
|
|
[DNAFieldAttribute(7, "short", "space_subtype", 2)]
|
|
public short space_subtype;
|
|
[DNAFieldAttribute(8, "short", "mainb", 2)]
|
|
public short mainb;
|
|
[DNAFieldAttribute(9, "short", "mainbo", 2)]
|
|
public short mainbo;
|
|
[DNAFieldAttribute(10, "short", "mainbuser", 2)]
|
|
public short mainbuser;
|
|
[DNAFieldAttribute(11, "short", "preview", 2)]
|
|
public short preview;
|
|
[DNAFieldAttribute(12, "char", "_pad[4]", 1)]
|
|
public char[] _pad = new System.Char[4];
|
|
[DNAFieldAttribute(13, "char", "flag", 1)]
|
|
public char flag;
|
|
[DNAFieldAttribute(14, "char", "outliner_sync", 1)]
|
|
public char outliner_sync;
|
|
[DNAFieldAttribute(15, "void", "*path", 0)]
|
|
public object ptr_path;
|
|
[DNAFieldAttribute(16, "int", "pathflag", 4)]
|
|
public int pathflag;
|
|
[DNAFieldAttribute(17, "int", "dataicon", 4)]
|
|
public int dataicon;
|
|
[DNAFieldAttribute(18, "ID", "*pinid", 208)]
|
|
public ID ptr_pinid;
|
|
[DNAFieldAttribute(19, "void", "*texuser", 0)]
|
|
public object ptr_texuser;
|
|
[DNAFieldAttribute(20, "SpaceProperties_Runtime", "*runtime", 0)]
|
|
public SpaceProperties_Runtime ptr_runtime;
|
|
public SpaceButs(
|
|
SpaceLink ptr_next,
|
|
SpaceLink ptr_prev,
|
|
ListBase regionbase,
|
|
char spacetype,
|
|
char link_flag,
|
|
char[] _pad0,
|
|
View2D v2d,
|
|
short space_subtype,
|
|
short mainb,
|
|
short mainbo,
|
|
short mainbuser,
|
|
short preview,
|
|
char[] _pad,
|
|
char flag,
|
|
char outliner_sync,
|
|
object ptr_path,
|
|
int pathflag,
|
|
int dataicon,
|
|
ID ptr_pinid,
|
|
object ptr_texuser,
|
|
SpaceProperties_Runtime ptr_runtime) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.regionbase = regionbase;
|
|
this.spacetype = spacetype;
|
|
this.link_flag = link_flag;
|
|
this._pad0 = _pad0;
|
|
this.v2d = v2d;
|
|
this.space_subtype = space_subtype;
|
|
this.mainb = mainb;
|
|
this.mainbo = mainbo;
|
|
this.mainbuser = mainbuser;
|
|
this.preview = preview;
|
|
this._pad = _pad;
|
|
this.flag = flag;
|
|
this.outliner_sync = outliner_sync;
|
|
this.ptr_path = ptr_path;
|
|
this.pathflag = pathflag;
|
|
this.dataicon = dataicon;
|
|
this.ptr_pinid = ptr_pinid;
|
|
this.ptr_texuser = ptr_texuser;
|
|
this.ptr_runtime = ptr_runtime;
|
|
}
|
|
}
|
|
}
|