30 lines
1.0 KiB
C#
30 lines
1.0 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;
|
|
|
|
public class bNodeSocketValueMenu {
|
|
[DNAFieldAttribute(0, "int", "value", 4)]
|
|
public int value;
|
|
[DNAFieldAttribute(1, "int", "runtime_flag", 4)]
|
|
public int runtime_flag;
|
|
[DNAFieldAttribute(2, "RuntimeNodeEnumItemsHandle", "*enum_items", 0)]
|
|
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;
|
|
}
|
|
}
|
|
}
|