using System; namespace NegUtils.NEG.UI { public interface IControllable { public class BackUsed { public bool Used { get; set; } } event Action OnOpened; event Action OnClosed; event Action UseBack; public void TryUseBack(ref BackUsed backUsed); } }