9 lines
183 B
C#
9 lines
183 B
C#
|
namespace LLib.ImGui;
|
|||
|
|
|||
|
public sealed class WindowConfig
|
|||
|
{
|
|||
|
public bool IsPinned { get; set; }
|
|||
|
public bool IsClickthrough { get; set; }
|
|||
|
public int? Alpha { get; set; }
|
|||
|
}
|