using System; using UnityEngine.UIElements; namespace DanieleMarotta.RiversongCodeShowcase { public interface IUIModel : INotifyBindablePropertyChanged { event Action Changed; } }