Files
2025-08-13 09:26:42 +08:00

14 lines
153 B
C#

using System;
namespace UniRx
{
public interface IObserver<T>
{
void OnCompleted();
void OnError(Exception error);
void OnNext(T value);
}
}