Files
BlenderSharp/BlendFile/DNA/StripProxy.cs

42 lines
1.5 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 StripProxy {
public char[] dir = new System.Char[768];
public char[] file = new System.Char[256];
public ImBufAnim ptr_anim;
public short tc;
public short quality;
public short build_size_flags;
public short build_tc_flags;
public short build_flags;
public char storage;
public char[] _pad = new System.Char[5];
public StripProxy(char[] dir, char[] file, ImBufAnim ptr_anim, short tc, short quality, short build_size_flags, short build_tc_flags, short build_flags, char storage, char[] _pad) {
this.dir = dir;
this.file = file;
this.ptr_anim = ptr_anim;
this.tc = tc;
this.quality = quality;
this.build_size_flags = build_size_flags;
this.build_tc_flags = build_tc_flags;
this.build_flags = build_flags;
this.storage = storage;
this._pad = _pad;
}
}
}