Regenerated codefiles
This commit is contained in:
@@ -15,17 +15,17 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(404, "Link", 16)]
|
||||
public class Link {
|
||||
[DNAFieldAttribute(0, "Link", "*next", "Link", 8, true, 0)]
|
||||
public Link ptr_next;
|
||||
[DNAFieldAttribute(1, "Link", "*prev", "Link", 8, true, 8)]
|
||||
public Link ptr_prev;
|
||||
[DNAFieldAttribute(8, "Link", 0, "*next", "Link", true, 0)]
|
||||
public Link next;
|
||||
[DNAFieldAttribute(8, "Link", 1, "*prev", "Link", true, 8)]
|
||||
public Link prev;
|
||||
public Link() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
}
|
||||
public Link(Link ptr_next, Link ptr_prev) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
public Link(Link next, Link prev) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user