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

View File

@@ -0,0 +1,20 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class MaskSpaceInfo {
public Mask ptr_mask;
public char draw_flag;
public char draw_type;
public char overlay_mode;
public char[] _pad3 = new System.Char[1];
public float blend_factor;
public MaskSpaceInfo(Mask ptr_mask, char draw_flag, char draw_type, char overlay_mode, char[] _pad3, float blend_factor) {
this.ptr_mask = ptr_mask;
this.draw_flag = draw_flag;
this.draw_type = draw_type;
this.overlay_mode = overlay_mode;
this._pad3 = _pad3;
this.blend_factor = blend_factor;
}
}
}