13 lines
267 B
C#
13 lines
267 B
C#
using System.Reflection;
|
|
|
|
namespace LLib.ImGui;
|
|
|
|
[Obfuscation(Feature = "-rename", Exclude = false, ApplyToMembers = true)]
|
|
public class WindowConfig
|
|
{
|
|
public bool IsPinned { get; set; }
|
|
|
|
public bool IsClickthrough { get; set; }
|
|
|
|
public int? Alpha { get; set; }
|
|
}
|