Neg_Utils/NEG/UI/IControllable.cs
2023-09-02 14:34:01 +02:00

18 lines
374 B
C#

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