mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 13:24:34 +01:00
10 lines
204 B
C#
10 lines
204 B
C#
#if NEED_TCS_SHIM
|
|
namespace System.Threading.Tasks
|
|
{
|
|
internal class TaskCompletionSource : TaskCompletionSource<bool>
|
|
{
|
|
public void TrySetResult() => TrySetResult(true);
|
|
}
|
|
}
|
|
|
|
#endif |