Files
BlenderSharp/BlendFile/DNA/DrawDataList.cs

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