mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 16:34:41 +01:00
21 lines
268 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|