mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 22:31:10 +00:00
12 lines
223 B
C#
12 lines
223 B
C#
using System;
|
|
|
|
namespace _Project.Develop.Runtime.Utils.ReactiveManagement
|
|
{
|
|
public interface IReadOnlyVariable<T>
|
|
{
|
|
T Value { get; }
|
|
|
|
IDisposable Subscribe(Action<T, T> action);
|
|
}
|
|
}
|