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