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

32 lines
930 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(24, "ListBase", 16)]
public class ListBase {
[DNAFieldAttribute(8, "void", 0, "*first", "void", true, 0)]
public object first;
[DNAFieldAttribute(8, "void", 1, "*last", "void", true, 8)]
public object last;
public ListBase() {
this.first = default;
this.last = default;
}
public ListBase(object first, object last) {
this.first = first;
this.last = last;
}
}
}