69 lines
2.2 KiB
C#
69 lines
2.2 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 SpaceIpo {
|
|
public SpaceLink ptr_next;
|
|
public SpaceLink ptr_prev;
|
|
public ListBase regionbase;
|
|
public char spacetype;
|
|
public char link_flag;
|
|
public char[] _pad0 = new System.Char[6];
|
|
public View2D v2d;
|
|
public bDopeSheet ptr_ads;
|
|
public short mode;
|
|
public short autosnap;
|
|
public int flag;
|
|
public float cursorTime;
|
|
public float cursorVal;
|
|
public int around;
|
|
public char[] _pad = new System.Char[4];
|
|
public SpaceGraph_Runtime runtime;
|
|
public SpaceIpo(
|
|
SpaceLink ptr_next,
|
|
SpaceLink ptr_prev,
|
|
ListBase regionbase,
|
|
char spacetype,
|
|
char link_flag,
|
|
char[] _pad0,
|
|
View2D v2d,
|
|
bDopeSheet ptr_ads,
|
|
short mode,
|
|
short autosnap,
|
|
int flag,
|
|
float cursorTime,
|
|
float cursorVal,
|
|
int around,
|
|
char[] _pad,
|
|
SpaceGraph_Runtime 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.ptr_ads = ptr_ads;
|
|
this.mode = mode;
|
|
this.autosnap = autosnap;
|
|
this.flag = flag;
|
|
this.cursorTime = cursorTime;
|
|
this.cursorVal = cursorVal;
|
|
this.around = around;
|
|
this._pad = _pad;
|
|
this.runtime = runtime;
|
|
}
|
|
}
|
|
}
|