MosswartMassacre/Unused/Decal.Adapter/CheckBoxChangeEventArgs.cs
2025-06-09 02:03:11 +02:00

14 lines
230 B
C#

namespace Decal.Adapter;
public class CheckBoxChangeEventArgs : ControlEventArgs
{
private bool check;
public bool Checked => check;
internal CheckBoxChangeEventArgs(int ID, bool Check)
: base(ID)
{
check = Check;
}
}