//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(866, "ARegion_Runtime", 48)] public class ARegion_Runtime { [DNAFieldAttribute(0, "char", "*category", "char", 8, true)] public char ptr_category; [DNAFieldAttribute(1, "rcti", "visible_rect", "rcti", 16, false)] public rcti visible_rect; [DNAFieldAttribute(2, "int", "offset_x", "int", 4, false)] public int offset_x; [DNAFieldAttribute(3, "int", "offset_y", "int", 4, false)] public int offset_y; [DNAFieldAttribute(4, "GHash", "*block_name_map", "GHash", 8, true)] public GHash ptr_block_name_map; [DNAFieldAttribute(5, "Panel", "*popup_block_panel", "Panel", 8, true)] public Panel ptr_popup_block_panel; public ARegion_Runtime() { this.ptr_category = default; this.visible_rect = default; this.offset_x = default; this.offset_y = default; this.ptr_block_name_map = default; this.ptr_popup_block_panel = default; } public ARegion_Runtime(char ptr_category, rcti visible_rect, int offset_x, int offset_y, GHash ptr_block_name_map, Panel ptr_popup_block_panel) { this.ptr_category = ptr_category; this.visible_rect = visible_rect; this.offset_x = offset_x; this.offset_y = offset_y; this.ptr_block_name_map = ptr_block_name_map; this.ptr_popup_block_panel = ptr_popup_block_panel; } } }