Files
BlenderSharp/BlendFile/DNA/IpoDriver.cs
2025-03-04 18:48:04 +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(8, "Object", 0, "*ob", "Object", true, 0)]
public Object ob;
[DNAFieldAttribute(2, "short", 1, "blocktype", "short", false, 8)]
public short blocktype;
[DNAFieldAttribute(2, "short", 2, "adrcode", "short", false, 10)]
public short adrcode;
[DNAFieldAttribute(2, "short", 3, "type", "short", false, 12)]
public short type;
[DNAFieldAttribute(2, "short", 4, "flag", "short", false, 14)]
public short flag;
[DNAFieldAttribute(128, "char", 5, "name[128]", "System.Char[]", false, 16)]
public char[] name = new System.Char[128];
public IpoDriver() {
this.ob = default;
this.blocktype = default;
this.adrcode = default;
this.type = default;
this.flag = default;
this.name = default;
}
public IpoDriver(Object ob, short blocktype, short adrcode, short type, short flag, char[] name) {
this.ob = ob;
this.blocktype = blocktype;
this.adrcode = adrcode;
this.type = type;
this.flag = flag;
this.name = name;
}
}
}