Files
BlenderSharp/BlendFile/DNA/bUUID.cs
2025-01-22 02:23:29 +01:00

21 lines
813 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct bUUID {
public int time_low;
public @ushort time_mid;
public @ushort time_hi_and_version;
public uchar clock_seq_hi_and_reserved;
public uchar clock_seq_low;
public uchar[] node = new uchar[6];
public bUUID(int time_low, @ushort time_mid, @ushort time_hi_and_version, uchar clock_seq_hi_and_reserved, uchar clock_seq_low, uchar[] node) {
this.time_low = time_low;
this.time_mid = time_mid;
this.time_hi_and_version = time_hi_and_version;
this.clock_seq_hi_and_reserved = clock_seq_hi_and_reserved;
this.clock_seq_low = clock_seq_low;
this.node = node;
}
}
}