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

8 lines
81 B
C#

namespace UniRx
{
public interface IProgress<T>
{
void Report(T value);
}
}