42 lines
1.4 KiB
C#
42 lines
1.4 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 {
|
|
|
|
public class KS_Path {
|
|
public KS_Path ptr_next;
|
|
public KS_Path ptr_prev;
|
|
public ID ptr_id;
|
|
public char[] group = new System.Char[64];
|
|
public int idtype;
|
|
public short groupmode;
|
|
public short flag;
|
|
public char ptr_rna_path;
|
|
public int array_index;
|
|
public short keyingflag;
|
|
public short keyingoverride;
|
|
public KS_Path(KS_Path ptr_next, KS_Path ptr_prev, ID ptr_id, char[] group, int idtype, short groupmode, short flag, char ptr_rna_path, int array_index, short keyingflag, short keyingoverride) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.ptr_id = ptr_id;
|
|
this.group = group;
|
|
this.idtype = idtype;
|
|
this.groupmode = groupmode;
|
|
this.flag = flag;
|
|
this.ptr_rna_path = ptr_rna_path;
|
|
this.array_index = array_index;
|
|
this.keyingflag = keyingflag;
|
|
this.keyingoverride = keyingoverride;
|
|
}
|
|
}
|
|
}
|