16 lines
260 B
C#
16 lines
260 B
C#
|
using Cysharp.Threading.Tasks;
|
||
|
|
||
|
namespace MessagePipe.Internal
|
||
|
{
|
||
|
internal static class TaskExtensions
|
||
|
{
|
||
|
#if !UNITY_2018_3_OR_NEWER
|
||
|
|
||
|
internal static async void Forget(this UniTask task)
|
||
|
{
|
||
|
await task;
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
}
|
||
|
}
|