Regenerated codefiles
This commit is contained in:
@@ -13,71 +13,55 @@ using System;
|
||||
namespace BlendFile.DNA {
|
||||
using BlendFile;
|
||||
|
||||
[DNAClassAttribute(855, "uiList", 328)]
|
||||
[DNAClassAttribute(855, "uiList", 188)]
|
||||
public class uiList {
|
||||
[DNAFieldAttribute(0, "uiList", "*next", "uiList", 8, true, 0)]
|
||||
public uiList ptr_next;
|
||||
[DNAFieldAttribute(1, "uiList", "*prev", "uiList", 8, true, 8)]
|
||||
public uiList ptr_prev;
|
||||
[DNAFieldAttribute(2, "uiListType", "*type", "uiListType", 8, true, 16)]
|
||||
public uiListType ptr_type;
|
||||
[DNAFieldAttribute(3, "char", "list_id[128]", "System.Char[]", 128, false, 24)]
|
||||
public char[] list_id = new System.Char[128];
|
||||
[DNAFieldAttribute(4, "int", "layout_type", "int", 4, false, 152)]
|
||||
[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(5, "int", "flag", "int", 4, false, 156)]
|
||||
[DNAFieldAttribute(4, "int", 5, "flag", "int", false, 28)]
|
||||
public int flag;
|
||||
[DNAFieldAttribute(6, "int", "list_scroll", "int", 4, false, 160)]
|
||||
public int list_scroll;
|
||||
[DNAFieldAttribute(7, "int", "list_grip", "int", 4, false, 164)]
|
||||
public int list_grip;
|
||||
[DNAFieldAttribute(8, "int", "list_last_len", "int", 4, false, 168)]
|
||||
[DNAFieldAttribute(4, "int", 8, "list_last_len", "int", false, 32)]
|
||||
public int list_last_len;
|
||||
[DNAFieldAttribute(9, "int", "list_last_activei", "int", 4, false, 172)]
|
||||
public int list_last_activei;
|
||||
[DNAFieldAttribute(10, "char", "filter_byname[128]", "System.Char[]", 128, false, 176)]
|
||||
[DNAFieldAttribute(128, "char", 10, "filter_byname[128]", "System.Char[]", false, 36)]
|
||||
public char[] filter_byname = new System.Char[128];
|
||||
[DNAFieldAttribute(11, "int", "filter_flag", "int", 4, false, 304)]
|
||||
[DNAFieldAttribute(4, "int", 11, "filter_flag", "int", false, 164)]
|
||||
public int filter_flag;
|
||||
[DNAFieldAttribute(12, "int", "filter_sort_flag", "int", 4, false, 308)]
|
||||
[DNAFieldAttribute(4, "int", 12, "filter_sort_flag", "int", false, 168)]
|
||||
public int filter_sort_flag;
|
||||
[DNAFieldAttribute(13, "IDProperty", "*properties", "IDProperty", 8, true, 312)]
|
||||
public IDProperty ptr_properties;
|
||||
[DNAFieldAttribute(14, "uiListDyn", "*dyn_data", "uiListDyn", 8, true, 320)]
|
||||
public uiListDyn ptr_dyn_data;
|
||||
[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.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.ptr_type = default;
|
||||
this.list_id = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.type = default;
|
||||
this.layout_type = default;
|
||||
this.flag = default;
|
||||
this.list_scroll = default;
|
||||
this.list_grip = default;
|
||||
this.list_last_len = default;
|
||||
this.list_last_activei = default;
|
||||
this.filter_byname = default;
|
||||
this.filter_flag = default;
|
||||
this.filter_sort_flag = default;
|
||||
this.ptr_properties = default;
|
||||
this.ptr_dyn_data = default;
|
||||
this.properties = default;
|
||||
this.dyn_data = default;
|
||||
}
|
||||
public uiList(uiList ptr_next, uiList ptr_prev, uiListType ptr_type, char[] list_id, int layout_type, int flag, int list_scroll, int list_grip, int list_last_len, int list_last_activei, char[] filter_byname, int filter_flag, int filter_sort_flag, IDProperty ptr_properties, uiListDyn ptr_dyn_data) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
this.ptr_type = ptr_type;
|
||||
this.list_id = list_id;
|
||||
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_scroll = list_scroll;
|
||||
this.list_grip = list_grip;
|
||||
this.list_last_len = list_last_len;
|
||||
this.list_last_activei = list_last_activei;
|
||||
this.filter_byname = filter_byname;
|
||||
this.filter_flag = filter_flag;
|
||||
this.filter_sort_flag = filter_sort_flag;
|
||||
this.ptr_properties = ptr_properties;
|
||||
this.ptr_dyn_data = ptr_dyn_data;
|
||||
this.properties = properties;
|
||||
this.dyn_data = dyn_data;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user