Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MainThreadCreationContext.cs
Go to the documentation of this file.
1using System;
3
4namespace ReLogic.Content;
5
7{
9
11
13 {
14 _continuationScheduler = continuationScheduler;
15 }
16
18 {
19 return this;
20 }
21
22 public void OnCompleted(Action action)
23 {
24 _continuationScheduler.OnCompleted(action);
25 }
26
27 public void GetResult()
28 {
29 }
30}
Async loading has been fully integrated into AssetRepository Assets which are asynchronously loaded w...
readonly AssetRepository.ContinuationScheduler _continuationScheduler
MainThreadCreationContext(AssetRepository.ContinuationScheduler continuationScheduler)