Files
BlenderSharp/BlendFile/DNA/bNodeSocketValueMenu.cs

28 lines
913 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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
namespace BlendFile.DNA {
public class bNodeSocketValueMenu {
public int value;
public int runtime_flag;
public RuntimeNodeEnumItemsHandle ptr_enum_items;
public bNodeSocketValueMenu(int value, int runtime_flag, RuntimeNodeEnumItemsHandle ptr_enum_items) {
this.value = value;
this.runtime_flag = runtime_flag;
this.ptr_enum_items = ptr_enum_items;
}
}
}