Files
BlenderSharp/BlendFile/DNA/StripProxy.cs
2025-01-22 02:23:29 +01:00

29 lines
1.1 KiB
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
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;
}
}
}