Files
BlenderSharp/BlendFile/DNA/IpoDriver.cs

34 lines
1.0 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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
namespace BlendFile.DNA {
public class IpoDriver {
public Object ptr_ob;
public short blocktype;
public short adrcode;
public short type;
public short flag;
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;
}
}
}