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,12 +11,18 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class MaskSplinePoint {
[DNAFieldAttribute(0, "BezTriple", "bezt", 72)]
public BezTriple bezt;
[DNAFieldAttribute(1, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(2, "int", "tot_uw", 4)]
public int tot_uw;
[DNAFieldAttribute(3, "MaskSplinePointUW", "*uw", 12)]
public MaskSplinePointUW ptr_uw;
[DNAFieldAttribute(4, "MaskParent", "parent", 184)]
public MaskParent parent;
public MaskSplinePoint(BezTriple bezt, char[] _pad, int tot_uw, MaskSplinePointUW ptr_uw, MaskParent parent) {
this.bezt = bezt;