Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,18 +11,30 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct uiWidgetColors {
[DNAFieldAttribute(0, "char", "outline[4]", 1)]
public char[] outline = new System.Char[4];
[DNAFieldAttribute(1, "char", "inner[4]", 1)]
public char[] inner = new System.Char[4];
[DNAFieldAttribute(2, "char", "inner_sel[4]", 1)]
public char[] inner_sel = new System.Char[4];
[DNAFieldAttribute(3, "char", "item[4]", 1)]
public char[] item = new System.Char[4];
[DNAFieldAttribute(4, "char", "text[4]", 1)]
public char[] text = new System.Char[4];
[DNAFieldAttribute(5, "char", "text_sel[4]", 1)]
public char[] text_sel = new System.Char[4];
[DNAFieldAttribute(6, "char", "shaded", 1)]
public char shaded;
[DNAFieldAttribute(7, "char", "_pad0[7]", 1)]
public char[] _pad0 = new System.Char[7];
[DNAFieldAttribute(8, "short", "shadetop", 2)]
public short shadetop;
[DNAFieldAttribute(9, "short", "shadedown", 2)]
public short shadedown;
[DNAFieldAttribute(10, "float", "roundness", 4)]
public float roundness;
public uiWidgetColors(char[] outline, char[] inner, char[] inner_sel, char[] item, char[] text, char[] text_sel, char shaded, char[] _pad0, short shadetop, short shadedown, float roundness) {
this.outline = outline;