48 lines
1.8 KiB
C#
48 lines
1.8 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(887, "MetaStack", 48)]
|
|
public class MetaStack {
|
|
[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;
|
|
[DNAArrayAttribute(8, "int", 5, "disp_range[2]", "System.Int32[]", 2, false, 40)]
|
|
public int[] disp_range = new System.Int32[2];
|
|
public MetaStack() {
|
|
this.next = default;
|
|
this.prev = default;
|
|
this.oldbasep = default;
|
|
this.old_channels = default;
|
|
this.parseq = default;
|
|
this.disp_range = default;
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
}
|