Files
BlenderSharp/BlendFile/DNA/SpaceStatusBar.cs
2025-01-22 02:23:29 +01:00

21 lines
736 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class SpaceStatusBar {
public SpaceLink ptr_next;
public SpaceLink ptr_prev;
public ListBase regionbase;
public char spacetype;
public char link_flag;
public char[] _pad0 = new System.Char[6];
public SpaceStatusBar(SpaceLink ptr_next, SpaceLink ptr_prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.regionbase = regionbase;
this.spacetype = spacetype;
this.link_flag = link_flag;
this._pad0 = _pad0;
}
}
}