Files
BlenderSharp/BlendFile/DNA/SeqConnection.cs
2025-03-04 18:48:04 +01:00

36 lines
1.2 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(889, "SeqConnection", 24)]
public class SeqConnection {
[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.next = default;
this.prev = default;
this.seq_ref = default;
}
public SeqConnection(SeqConnection next, SeqConnection prev, Sequence seq_ref) {
this.next = next;
this.prev = prev;
this.seq_ref = seq_ref;
}
}
}