//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ 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; } } }