Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
VoidAsyncOperationWithData.cs
Go to the documentation of this file.
2
3internal sealed class VoidAsyncOperationWithData<TData> : AsyncOperation<VoidResult>
4{
5 public TData Item { get; set; }
6
7 public VoidAsyncOperationWithData(bool runContinuationsAsynchronously, CancellationToken cancellationToken = default(CancellationToken), bool pooled = false)
8 : base(runContinuationsAsynchronously, cancellationToken, pooled)
9 {
10 }
11}
VoidAsyncOperationWithData(bool runContinuationsAsynchronously, CancellationToken cancellationToken=default(CancellationToken), bool pooled=false)