Files
BlenderSharp/BlendFile/DNA/IpoDriver.cs
2025-01-22 20:24:55 +01:00

39 lines
1.3 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;
public class IpoDriver {
[DNAFieldAttribute(0, "Object", "*ob", 1160)]
public Object ptr_ob;
[DNAFieldAttribute(1, "short", "blocktype", 2)]
public short blocktype;
[DNAFieldAttribute(2, "short", "adrcode", 2)]
public short adrcode;
[DNAFieldAttribute(3, "short", "type", 2)]
public short type;
[DNAFieldAttribute(4, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(5, "char", "name[128]", 1)]
public char[] name = new System.Char[128];
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;
}
}
}