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,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct bUUID {
[DNAFieldAttribute(0, "int", "time_low", 4)]
public int time_low;
[DNAFieldAttribute(1, "ushort", "time_mid", 2)]
public ushort time_mid;
[DNAFieldAttribute(2, "ushort", "time_hi_and_version", 2)]
public ushort time_hi_and_version;
[DNAFieldAttribute(3, "uchar", "clock_seq_hi_and_reserved", 1)]
public byte clock_seq_hi_and_reserved;
[DNAFieldAttribute(4, "uchar", "clock_seq_low", 1)]
public byte clock_seq_low;
[DNAFieldAttribute(5, "uchar", "node[6]", 1)]
public byte[] node = new System.Byte[6];
public bUUID(int time_low, ushort time_mid, ushort time_hi_and_version, byte clock_seq_hi_and_reserved, byte clock_seq_low, byte[] node) {
this.time_low = time_low;