Files
BlenderSharp/BlendFile/DNA/bNodeSocketValueMenu.cs
2025-01-22 02:23:29 +01:00

15 lines
510 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
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;
}
}
}