Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

77
BlendFile/DNA/Editing.cs Normal file
View File

@@ -0,0 +1,77 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class Editing {
public ListBase ptr_seqbasep;
public ListBase ptr_displayed_channels;
public object ptr__pad0;
public ListBase seqbase;
public ListBase metastack;
public ListBase channels;
public Sequence ptr_act_seq;
public char[] act_imagedir = new System.Char[1024];
public char[] act_sounddir = new System.Char[1024];
public char[] proxy_dir = new System.Char[1024];
public int proxy_storage;
public int over_ofs;
public int over_cfra;
public int over_flag;
public rctf over_border;
public int show_missing_media_flag;
public int _pad1;
public SeqCache ptr_cache;
public float recycle_max_cost;
public int cache_flag;
public PrefetchJob ptr_prefetch_job;
public int64_t disk_cache_timestamp;
public EditingRuntime runtime;
public Editing(
ListBase ptr_seqbasep,
ListBase ptr_displayed_channels,
object ptr__pad0,
ListBase seqbase,
ListBase metastack,
ListBase channels,
Sequence ptr_act_seq,
char[] act_imagedir,
char[] act_sounddir,
char[] proxy_dir,
int proxy_storage,
int over_ofs,
int over_cfra,
int over_flag,
rctf over_border,
int show_missing_media_flag,
int _pad1,
SeqCache ptr_cache,
float recycle_max_cost,
int cache_flag,
PrefetchJob ptr_prefetch_job,
int64_t disk_cache_timestamp,
EditingRuntime runtime) {
this.ptr_seqbasep = ptr_seqbasep;
this.ptr_displayed_channels = ptr_displayed_channels;
this.ptr__pad0 = ptr__pad0;
this.seqbase = seqbase;
this.metastack = metastack;
this.channels = channels;
this.ptr_act_seq = ptr_act_seq;
this.act_imagedir = act_imagedir;
this.act_sounddir = act_sounddir;
this.proxy_dir = proxy_dir;
this.proxy_storage = proxy_storage;
this.over_ofs = over_ofs;
this.over_cfra = over_cfra;
this.over_flag = over_flag;
this.over_border = over_border;
this.show_missing_media_flag = show_missing_media_flag;
this._pad1 = _pad1;
this.ptr_cache = ptr_cache;
this.recycle_max_cost = recycle_max_cost;
this.cache_flag = cache_flag;
this.ptr_prefetch_job = ptr_prefetch_job;
this.disk_cache_timestamp = disk_cache_timestamp;
this.runtime = runtime;
}
}
}