Files
BlenderSharp/BlendFile/DNA/NodeCombSepColor.cs
2025-02-19 18:48:50 +01:00

28 lines
784 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(749, "NodeCombSepColor", 1)]
public struct NodeCombSepColor {
[DNAFieldAttribute(0, "int8_t", "mode", "int8_t", 1, false)]
public sbyte mode;
public NodeCombSepColor() {
this.mode = default;
}
public NodeCombSepColor(sbyte mode) {
this.mode = mode;
}
}
}