43 lines
1.5 KiB
C#
43 lines
1.5 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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class IDPropertyUIDataInt {
|
|
public IDPropertyUIData @base;
|
|
public int ptr_default_array;
|
|
public int default_array_len;
|
|
public int min;
|
|
public int max;
|
|
public int soft_min;
|
|
public int soft_max;
|
|
public int step;
|
|
public int default_value;
|
|
public int enum_items_num;
|
|
public IDPropertyUIDataEnumItem ptr_enum_items;
|
|
public IDPropertyUIDataInt(IDPropertyUIData @base, int ptr_default_array, int default_array_len, int min, int max, int soft_min, int soft_max, int step, int default_value, int enum_items_num, IDPropertyUIDataEnumItem ptr_enum_items) {
|
|
this.@base = @base;
|
|
this.ptr_default_array = ptr_default_array;
|
|
this.default_array_len = default_array_len;
|
|
this.min = min;
|
|
this.max = max;
|
|
this.soft_min = soft_min;
|
|
this.soft_max = soft_max;
|
|
this.step = step;
|
|
this.default_value = default_value;
|
|
this.enum_items_num = enum_items_num;
|
|
this.ptr_enum_items = ptr_enum_items;
|
|
}
|
|
}
|
|
}
|