UniTask
UniTask copied to clipboard
fix: prevent NullReferenceException in TimeoutController
Prevents NullReferenceException thrown when Dispose is called without calling Timeout in TimeoutController.
code to reproduce
void Start()
{
var tc = new TimeoutController();
tc.Dispose();
}