Files
BlenderSharp/BlendFile/DNA/uiList.cs
2025-03-04 18:48:04 +01:00

68 lines
2.8 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;
[DNAClassAttribute(855, "uiList", 188)]
public class uiList {
[DNAFieldAttribute(8, "uiList", 0, "*next", "uiList", true, 0)]
public uiList next;
[DNAFieldAttribute(8, "uiList", 1, "*prev", "uiList", true, 8)]
public uiList prev;
[DNAFieldAttribute(8, "uiListType", 2, "*type", "uiListType", true, 16)]
public uiListType type;
[DNAFieldAttribute(4, "int", 4, "layout_type", "int", false, 24)]
public int layout_type;
[DNAFieldAttribute(4, "int", 5, "flag", "int", false, 28)]
public int flag;
[DNAFieldAttribute(4, "int", 8, "list_last_len", "int", false, 32)]
public int list_last_len;
[DNAFieldAttribute(128, "char", 10, "filter_byname[128]", "System.Char[]", false, 36)]
public char[] filter_byname = new System.Char[128];
[DNAFieldAttribute(4, "int", 11, "filter_flag", "int", false, 164)]
public int filter_flag;
[DNAFieldAttribute(4, "int", 12, "filter_sort_flag", "int", false, 168)]
public int filter_sort_flag;
[DNAFieldAttribute(8, "IDProperty", 13, "*properties", "IDProperty", true, 172)]
public IDProperty properties;
[DNAFieldAttribute(8, "uiListDyn", 14, "*dyn_data", "uiListDyn", true, 180)]
public uiListDyn dyn_data;
public uiList() {
this.next = default;
this.prev = default;
this.type = default;
this.layout_type = default;
this.flag = default;
this.list_last_len = default;
this.filter_byname = default;
this.filter_flag = default;
this.filter_sort_flag = default;
this.properties = default;
this.dyn_data = default;
}
public uiList(uiList next, uiList prev, uiListType type, int layout_type, int flag, int list_last_len, char[] filter_byname, int filter_flag, int filter_sort_flag, IDProperty properties, uiListDyn dyn_data) {
this.next = next;
this.prev = prev;
this.type = type;
this.layout_type = layout_type;
this.flag = flag;
this.list_last_len = list_last_len;
this.filter_byname = filter_byname;
this.filter_flag = filter_flag;
this.filter_sort_flag = filter_sort_flag;
this.properties = properties;
this.dyn_data = dyn_data;
}
}
}