Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
CurrentThreadRunner.cs
Go to the documentation of this file.
1
using
System
;
2
using
System.Windows.Threading;
3
4
namespace
Terraria.Social.WeGame
;
5
6
public
class
CurrentThreadRunner
7
{
8
private
Dispatcher
_dsipatcher
;
9
10
public
CurrentThreadRunner
()
11
{
12
_dsipatcher
= Dispatcher.CurrentDispatcher;
13
}
14
15
public
void
Run
(Action f)
16
{
17
_dsipatcher
.BeginInvoke(f);
18
}
19
}
Terraria.Social.WeGame.CurrentThreadRunner._dsipatcher
Dispatcher _dsipatcher
Definition
CurrentThreadRunner.cs:8
Terraria.Social.WeGame.CurrentThreadRunner.Run
void Run(Action f)
Definition
CurrentThreadRunner.cs:15
Terraria.Social.WeGame.CurrentThreadRunner.CurrentThreadRunner
CurrentThreadRunner()
Definition
CurrentThreadRunner.cs:10
Terraria.Social.WeGame.CurrentThreadRunner
Definition
CurrentThreadRunner.cs:7
System
Definition
BlockingCollection.cs:8
Terraria.Social.WeGame
Definition
AchievementsSocialModule.cs:6
source
Terraria.Social.WeGame
CurrentThreadRunner.cs
Generated by
1.10.0