32 lines
901 B
C#
32 lines
901 B
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(404, "Link", 16)]
|
|
public class Link {
|
|
[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.next = default;
|
|
this.prev = default;
|
|
}
|
|
public Link(Link next, Link prev) {
|
|
this.next = next;
|
|
this.prev = prev;
|
|
}
|
|
}
|
|
}
|