State/IToggleState.cs

11 lines
189 B
C#
Raw Normal View History

2022-11-14 12:55:53 +03:00
using System;
2022-11-14 12:57:20 +03:00
namespace Syntriax.Modules.State
2022-11-14 12:55:53 +03:00
{
public interface IToggleState
{
bool Toggled { get; set; }
Action<bool> OnToggleStateChanged { get; set; }
}
}