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

40 lines
1.3 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(697, "NodeEnumItem", 24)]
public class NodeEnumItem {
[DNAFieldAttribute(8, "char", 0, "*name", "char", true, 0)]
public char name;
[DNAFieldAttribute(8, "char", 1, "*description", "char", true, 8)]
public char description;
[DNAFieldAttribute(4, "int", 2, "identifier", "int", false, 16)]
public int identifier;
[DNAFieldAttribute(4, "char", 3, "_pad[4]", "System.Char[]", false, 20)]
public char[] _pad = new System.Char[4];
public NodeEnumItem() {
this.name = default;
this.description = default;
this.identifier = default;
this._pad = default;
}
public NodeEnumItem(char name, char description, int identifier, char[] _pad) {
this.name = name;
this.description = description;
this.identifier = identifier;
this._pad = _pad;
}
}
}