Files
BlenderSharp/BlendFile/DNA/ActionChannelBag.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

32 lines
1.2 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 {
public class ActionChannelBag {
public int slot_handle;
public int group_array_num;
public bActionGroup ptr_ptr_group_array;
public byte[] _pad = new System.Byte[4];
public int fcurve_array_num;
public FCurve ptr_ptr_fcurve_array;
public ActionChannelBag(int slot_handle, int group_array_num, bActionGroup ptr_ptr_group_array, byte[] _pad, int fcurve_array_num, FCurve ptr_ptr_fcurve_array) {
this.slot_handle = slot_handle;
this.group_array_num = group_array_num;
this.ptr_ptr_group_array = ptr_ptr_group_array;
this._pad = _pad;
this.fcurve_array_num = fcurve_array_num;
this.ptr_ptr_fcurve_array = ptr_ptr_fcurve_array;
}
}
}