Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(889, "SeqConnection", 24)]
public class SeqConnection {
[DNAFieldAttribute(0, "SeqConnection", "*next", "SeqConnection", 8, true, 0)]
public SeqConnection ptr_next;
[DNAFieldAttribute(1, "SeqConnection", "*prev", "SeqConnection", 8, true, 8)]
public SeqConnection ptr_prev;
[DNAFieldAttribute(2, "Sequence", "*seq_ref", "Sequence", 8, true, 16)]
public Sequence ptr_seq_ref;
[DNAFieldAttribute(8, "SeqConnection", 0, "*next", "SeqConnection", true, 0)]
public SeqConnection next;
[DNAFieldAttribute(8, "SeqConnection", 1, "*prev", "SeqConnection", true, 8)]
public SeqConnection prev;
[DNAFieldAttribute(8, "Sequence", 2, "*seq_ref", "Sequence", true, 16)]
public Sequence seq_ref;
public SeqConnection() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_seq_ref = default;
this.next = default;
this.prev = default;
this.seq_ref = default;
}
public SeqConnection(SeqConnection ptr_next, SeqConnection ptr_prev, Sequence ptr_seq_ref) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_seq_ref = ptr_seq_ref;
public SeqConnection(SeqConnection next, SeqConnection prev, Sequence seq_ref) {
this.next = next;
this.prev = prev;
this.seq_ref = seq_ref;
}
}
}