26 lines
818 B
C#
26 lines
818 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 {
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|