Files
BlenderSharp/BlendFile/DNA/bNodeSocketValueInt.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(585, "bNodeSocketValueInt", 16)]
public class bNodeSocketValueInt {
[DNAFieldAttribute(4, "int", 0, "subtype", "int", false, 0)]
public int subtype;
[DNAFieldAttribute(4, "int", 1, "value", "int", false, 4)]
public int value;
[DNAFieldAttribute(4, "int", 2, "min", "int", false, 8)]
public int min;
[DNAFieldAttribute(4, "int", 3, "max", "int", false, 12)]
public int max;
public bNodeSocketValueInt() {
this.subtype = default;
this.value = default;
this.min = default;
this.max = default;
}
public bNodeSocketValueInt(int subtype, int value, int min, int max) {
this.subtype = subtype;
this.value = value;
this.min = min;
this.max = max;
}
}
}