Files
BlenderSharp/BlendFile/DNA/ARegion_Runtime.cs
2025-02-18 18:16:57 +01:00

48 lines
1.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(866, "ARegion_Runtime")]
public class ARegion_Runtime {
[DNAFieldAttribute(0, "char", "*category", "char", 1)]
public char ptr_category;
[DNAFieldAttribute(1, "rcti", "visible_rect", "rcti", 16)]
public rcti visible_rect;
[DNAFieldAttribute(2, "int", "offset_x", "int", 4)]
public int offset_x;
[DNAFieldAttribute(3, "int", "offset_y", "int", 4)]
public int offset_y;
[DNAFieldAttribute(4, "GHash", "*block_name_map", "GHash", 0)]
public GHash ptr_block_name_map;
[DNAFieldAttribute(5, "Panel", "*popup_block_panel", "Panel", 192)]
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;
}
}
}