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

34 lines
1.1 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 struct ActionStrip {
public sbyte strip_type;
public byte[] _pad0 = new System.Byte[3];
public int data_index;
public float frame_start;
public float frame_end;
public float frame_offset;
public byte[] _pad1 = new System.Byte[4];
public ActionStrip(sbyte strip_type, byte[] _pad0, int data_index, float frame_start, float frame_end, float frame_offset, byte[] _pad1) {
this.strip_type = strip_type;
this._pad0 = _pad0;
this.data_index = data_index;
this.frame_start = frame_start;
this.frame_end = frame_end;
this.frame_offset = frame_offset;
this._pad1 = _pad1;
}
}
}