//------------------------------------------------------------------------------ // // 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(527, "GreasePencilSubdivModifierData")] public class GreasePencilSubdivModifierData { [DNAFieldAttribute(0, "ModifierData", "modifier", 120)] public ModifierData modifier; [DNAFieldAttribute(1, "GreasePencilModifierInfluenceData", "influence", 168)] public GreasePencilModifierInfluenceData influence; [DNAFieldAttribute(2, "int", "type", 4)] public int type; [DNAFieldAttribute(3, "int", "level", 4)] public int level; [DNAFieldAttribute(4, "char", "_pad[8]", 1)] public char[] _pad = new System.Char[8]; [DNAFieldAttribute(5, "void", "*_pad1", 0)] public object ptr__pad1; public GreasePencilSubdivModifierData() { this.modifier = default; this.influence = default; this.type = default; this.level = default; this._pad = default; this.ptr__pad1 = default; } public GreasePencilSubdivModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, int type, int level, char[] _pad, object ptr__pad1) { this.modifier = modifier; this.influence = influence; this.type = type; this.level = level; this._pad = _pad; this.ptr__pad1 = ptr__pad1; } } }