Regenerated codefiles
This commit is contained in:
@@ -15,32 +15,32 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(887, "MetaStack", 48)]
|
||||
public class MetaStack {
|
||||
[DNAFieldAttribute(0, "MetaStack", "*next", "MetaStack", 8, true, 0)]
|
||||
public MetaStack ptr_next;
|
||||
[DNAFieldAttribute(1, "MetaStack", "*prev", "MetaStack", 8, true, 8)]
|
||||
public MetaStack ptr_prev;
|
||||
[DNAFieldAttribute(2, "ListBase", "*oldbasep", "ListBase", 8, true, 16)]
|
||||
public ListBase ptr_oldbasep;
|
||||
[DNAFieldAttribute(3, "ListBase", "*old_channels", "ListBase", 8, true, 24)]
|
||||
public ListBase ptr_old_channels;
|
||||
[DNAFieldAttribute(4, "Sequence", "*parseq", "Sequence", 8, true, 32)]
|
||||
public Sequence ptr_parseq;
|
||||
[DNAFieldAttribute(5, "int", "disp_range[2]", "System.Int32[]", 8, false, 40)]
|
||||
[DNAFieldAttribute(8, "MetaStack", 0, "*next", "MetaStack", true, 0)]
|
||||
public MetaStack next;
|
||||
[DNAFieldAttribute(8, "MetaStack", 1, "*prev", "MetaStack", true, 8)]
|
||||
public MetaStack prev;
|
||||
[DNAFieldAttribute(8, "ListBase", 2, "*oldbasep", "ListBase", true, 16)]
|
||||
public ListBase oldbasep;
|
||||
[DNAFieldAttribute(8, "ListBase", 3, "*old_channels", "ListBase", true, 24)]
|
||||
public ListBase old_channels;
|
||||
[DNAFieldAttribute(8, "Sequence", 4, "*parseq", "Sequence", true, 32)]
|
||||
public Sequence parseq;
|
||||
[DNAFieldAttribute(8, "int", 5, "disp_range[2]", "System.Int32[]", false, 40)]
|
||||
public int[] disp_range = new System.Int32[2];
|
||||
public MetaStack() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.ptr_oldbasep = default;
|
||||
this.ptr_old_channels = default;
|
||||
this.ptr_parseq = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.oldbasep = default;
|
||||
this.old_channels = default;
|
||||
this.parseq = default;
|
||||
this.disp_range = default;
|
||||
}
|
||||
public MetaStack(MetaStack ptr_next, MetaStack ptr_prev, ListBase ptr_oldbasep, ListBase ptr_old_channels, Sequence ptr_parseq, int[] disp_range) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
this.ptr_oldbasep = ptr_oldbasep;
|
||||
this.ptr_old_channels = ptr_old_channels;
|
||||
this.ptr_parseq = ptr_parseq;
|
||||
public MetaStack(MetaStack next, MetaStack prev, ListBase oldbasep, ListBase old_channels, Sequence parseq, int[] disp_range) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
this.oldbasep = oldbasep;
|
||||
this.old_channels = old_channels;
|
||||
this.parseq = parseq;
|
||||
this.disp_range = disp_range;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user