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

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