44 lines
1.6 KiB
C#
44 lines
1.6 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;
|
|
|
|
[DNAClassAttribute(171, "bConstraintChannel")]
|
|
public class bConstraintChannel {
|
|
[DNAFieldAttribute(0, "bConstraintChannel", "*next", "bConstraintChannel", 4, true)]
|
|
public bConstraintChannel ptr_next;
|
|
[DNAFieldAttribute(1, "bConstraintChannel", "*prev", "bConstraintChannel", 4, true)]
|
|
public bConstraintChannel ptr_prev;
|
|
[DNAFieldAttribute(2, "Ipo", "*ipo", "Ipo", 4, true)]
|
|
public Ipo ptr_ipo;
|
|
[DNAFieldAttribute(3, "short", "flag", "short", 2, false)]
|
|
public short flag;
|
|
[DNAFieldAttribute(4, "char", "name[30]", "System.Char[]", 30, false)]
|
|
public char[] name = new System.Char[30];
|
|
public bConstraintChannel() {
|
|
this.ptr_next = default;
|
|
this.ptr_prev = default;
|
|
this.ptr_ipo = default;
|
|
this.flag = default;
|
|
this.name = default;
|
|
}
|
|
public bConstraintChannel(bConstraintChannel ptr_next, bConstraintChannel ptr_prev, Ipo ptr_ipo, short flag, char[] name) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.ptr_ipo = ptr_ipo;
|
|
this.flag = flag;
|
|
this.name = name;
|
|
}
|
|
}
|
|
}
|