using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public interface IObserver { public void OnNext(T value); public void OnError(Exception error); public void OnCompleted(); }