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

28 lines
876 B
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(722, "NodeGeometryInputNamedAttribute", 1)]
public class NodeGeometryInputNamedAttribute {
[DNAFieldAttribute(1, "int8_t", 0, "data_type", "int8_t", false, 0)]
public sbyte data_type;
public NodeGeometryInputNamedAttribute() {
this.data_type = default;
}
public NodeGeometryInputNamedAttribute(sbyte data_type) {
this.data_type = data_type;
}
}
}