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

21 lines
268 B
C#

using System;
namespace UniRx
{
internal static class Stubs
{
public static readonly Action Nop = delegate
{
};
public static readonly Action<Exception> Throw = delegate(Exception ex)
{
throw ex;
};
public static void Ignore<T>(T t)
{
}
}
}