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

32 lines
1.1 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(310, "GreasePencilDrawingReference", 16)]
public class GreasePencilDrawingReference {
[DNAFieldAttribute(8, "GreasePencilDrawingBase", 0, "base", "GreasePencilDrawingBase", false, 0)]
public GreasePencilDrawingBase @base;
[DNAFieldAttribute(8, "GreasePencil", 1, "*id_reference", "GreasePencil", true, 8)]
public GreasePencil id_reference;
public GreasePencilDrawingReference() {
this.@base = default;
this.id_reference = default;
}
public GreasePencilDrawingReference(GreasePencilDrawingBase @base, GreasePencil id_reference) {
this.@base = @base;
this.id_reference = id_reference;
}
}
}