Files
2026-05-21 16:04:49 +02:00

10 lines
200 B
C#

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