Generated new code and added initial data handling
This commit is contained in:
@@ -27,6 +27,14 @@ namespace BlendFile.DNA {
|
||||
public byte clock_seq_low;
|
||||
[DNAFieldAttribute(5, "uchar", "node[6]", 1)]
|
||||
public byte[] node = new System.Byte[6];
|
||||
public bUUID() {
|
||||
this.time_low = default;
|
||||
this.time_mid = default;
|
||||
this.time_hi_and_version = default;
|
||||
this.clock_seq_hi_and_reserved = default;
|
||||
this.clock_seq_low = default;
|
||||
this.node = default;
|
||||
}
|
||||
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;
|
||||
this.time_mid = time_mid;
|
||||
|
||||
Reference in New Issue
Block a user