using System; namespace UniRx { public interface IObservable { IDisposable Subscribe(IObserver observer); } }