Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
FriendsSocialModule.cs
Go to the documentation of this file.
1using rail;
3
5
7{
8 public override void Initialize()
9 {
10 }
11
12 public override void Shutdown()
13 {
14 }
15
16 public override string GetUsername()
17 {
18 //IL_000c: Unknown result type (might be due to invalid IL or missing references)
19 string text = default(string);
20 rail_api.RailFactory().RailPlayer().GetPlayerName(ref text);
21 WeGameHelper.WriteDebugString("GetUsername by wegame" + text);
22 return text;
23 }
24
25 public override void OpenJoinInterface()
26 {
27 //IL_0021: Unknown result type (might be due to invalid IL or missing references)
28 WeGameHelper.WriteDebugString("OpenJoinInterface by wegame");
29 rail_api.RailFactory().RailFloatingWindow().AsyncShowRailFloatingWindow((EnumRailWindowType)10, "");
30 }
31}
static void WriteDebugString(string format, params object[] args)