Files
BlenderSharp/BlendFile/DNA/IpoDriver.cs
2025-02-19 18:48:50 +01:00

48 lines
1.7 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(335, "IpoDriver", 144)]
public class IpoDriver {
[DNAFieldAttribute(0, "Object", "*ob", "Object", 8, true)]
public Object ptr_ob;
[DNAFieldAttribute(1, "short", "blocktype", "short", 2, false)]
public short blocktype;
[DNAFieldAttribute(2, "short", "adrcode", "short", 2, false)]
public short adrcode;
[DNAFieldAttribute(3, "short", "type", "short", 2, false)]
public short type;
[DNAFieldAttribute(4, "short", "flag", "short", 2, false)]
public short flag;
[DNAFieldAttribute(5, "char", "name[128]", "System.Char[]", 128, false)]
public char[] name = new System.Char[128];
public IpoDriver() {
this.ptr_ob = default;
this.blocktype = default;
this.adrcode = default;
this.type = default;
this.flag = default;
this.name = default;
}
public IpoDriver(Object ptr_ob, short blocktype, short adrcode, short type, short flag, char[] name) {
this.ptr_ob = ptr_ob;
this.blocktype = blocktype;
this.adrcode = adrcode;
this.type = type;
this.flag = flag;
this.name = name;
}
}
}