10 lines
200 B
C#
10 lines
200 B
C#
using System;
|
|
using UnityEngine.UIElements;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public interface IUIModel : INotifyBindablePropertyChanged
|
|
{
|
|
event Action Changed;
|
|
}
|
|
} |