//------------------------------------------------------------------------------ // // 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(1034, "SimulationZoneViewerPathElem", 40)] public class SimulationZoneViewerPathElem { [DNAFieldAttribute(32, "ViewerPathElem", 0, "base", "ViewerPathElem", false, 0)] public ViewerPathElem @base; [DNAFieldAttribute(4, "int", 1, "sim_output_node_id", "int", false, 32)] public int sim_output_node_id; [DNAFieldAttribute(4, "char", 2, "_pad1[4]", "System.Char[]", false, 36)] public char[] _pad1 = new System.Char[4]; public SimulationZoneViewerPathElem() { this.@base = default; this.sim_output_node_id = default; this._pad1 = default; } public SimulationZoneViewerPathElem(ViewerPathElem @base, int sim_output_node_id, char[] _pad1) { this.@base = @base; this.sim_output_node_id = sim_output_node_id; this._pad1 = _pad1; } } }