Files
BlenderSharp/BlendFile/DNA/ActionStripKeyframeData.cs

28 lines
990 B
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 01/22/2025 16:57:57
namespace BlendFile.DNA {
public class ActionStripKeyframeData {
public ActionChannelBag ptr_ptr_channelbag_array;
public int channelbag_array_num;
public uchar[] _pad = new uchar[4];
public ActionStripKeyframeData(ActionChannelBag ptr_ptr_channelbag_array, int channelbag_array_num, uchar[] _pad) {
this.ptr_ptr_channelbag_array = ptr_ptr_channelbag_array;
this.channelbag_array_num = channelbag_array_num;
this._pad = _pad;
}
}
}