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

32 lines
970 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(14, "DrawDataList", 16)]
public class DrawDataList {
[DNAFieldAttribute(8, "DrawData", 0, "*first", "DrawData", true, 0)]
public DrawData first;
[DNAFieldAttribute(8, "DrawData", 1, "*last", "DrawData", true, 8)]
public DrawData last;
public DrawDataList() {
this.first = default;
this.last = default;
}
public DrawDataList(DrawData first, DrawData last) {
this.first = first;
this.last = last;
}
}
}