Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
CurrentThreadRunner.cs
Go to the documentation of this file.
1using System;
2using System.Windows.Threading;
3
5
7{
8 private Dispatcher _dsipatcher;
9
11 {
12 _dsipatcher = Dispatcher.CurrentDispatcher;
13 }
14
15 public void Run(Action f)
16 {
17 _dsipatcher.BeginInvoke(f);
18 }
19}