using System; namespace EcsRx.Plugins.Computeds { public interface IComputed : IObservable { T Value { get; } } }