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

89
BlendFile/DNA/bTheme.cs Normal file
View File

@@ -0,0 +1,89 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class bTheme {
public bTheme ptr_next;
public bTheme ptr_prev;
public char[] name = new System.Char[64];
public char[] filepath = new System.Char[1024];
public ThemeUI tui;
public ThemeSpace tbuts;
public ThemeSpace tv3d;
public ThemeSpace tfile;
public ThemeSpace tipo;
public ThemeSpace tinfo;
public ThemeSpace tact;
public ThemeSpace tnla;
public ThemeSpace tseq;
public ThemeSpace tima;
public ThemeSpace text;
public ThemeSpace toops;
public ThemeSpace tnode;
public ThemeSpace tuserpref;
public ThemeSpace tconsole;
public ThemeSpace tclip;
public ThemeSpace ttopbar;
public ThemeSpace tstatusbar;
public ThemeSpace space_spreadsheet;
public ThemeWireColor[] tarm = new ThemeWireColor[20];
public ThemeCollectionColor[] collection_color = new ThemeCollectionColor[8];
public ThemeStripColor[] strip_color = new ThemeStripColor[9];
public int active_theme_area;
public bTheme(
bTheme ptr_next,
bTheme ptr_prev,
char[] name,
char[] filepath,
ThemeUI tui,
ThemeSpace tbuts,
ThemeSpace tv3d,
ThemeSpace tfile,
ThemeSpace tipo,
ThemeSpace tinfo,
ThemeSpace tact,
ThemeSpace tnla,
ThemeSpace tseq,
ThemeSpace tima,
ThemeSpace text,
ThemeSpace toops,
ThemeSpace tnode,
ThemeSpace tuserpref,
ThemeSpace tconsole,
ThemeSpace tclip,
ThemeSpace ttopbar,
ThemeSpace tstatusbar,
ThemeSpace space_spreadsheet,
ThemeWireColor[] tarm,
ThemeCollectionColor[] collection_color,
ThemeStripColor[] strip_color,
int active_theme_area) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.name = name;
this.filepath = filepath;
this.tui = tui;
this.tbuts = tbuts;
this.tv3d = tv3d;
this.tfile = tfile;
this.tipo = tipo;
this.tinfo = tinfo;
this.tact = tact;
this.tnla = tnla;
this.tseq = tseq;
this.tima = tima;
this.text = text;
this.toops = toops;
this.tnode = tnode;
this.tuserpref = tuserpref;
this.tconsole = tconsole;
this.tclip = tclip;
this.ttopbar = ttopbar;
this.tstatusbar = tstatusbar;
this.space_spreadsheet = space_spreadsheet;
this.tarm = tarm;
this.collection_color = collection_color;
this.strip_color = strip_color;
this.active_theme_area = active_theme_area;
}
}
}