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

32 lines
921 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 System;
namespace BlendFile.DNA {
public struct NodeImageAnim {
public int frames;
public int sfra;
public int nr;
public char cyclic;
public char movie;
public char[] _pad = new System.Char[2];
public NodeImageAnim(int frames, int sfra, int nr, char cyclic, char movie, char[] _pad) {
this.frames = frames;
this.sfra = sfra;
this.nr = nr;
this.cyclic = cyclic;
this.movie = movie;
this._pad = _pad;
}
}
}