terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
Logger.cs
Go to the documentation of this file.
1using System;
3
4namespace InControl
5{
6 // Token: 0x0200002B RID: 43
7 public class Logger
8 {
9 // Token: 0x14000006 RID: 6
10 // (add) Token: 0x060001C7 RID: 455 RVA: 0x00005908 File Offset: 0x00003B08
11 // (remove) Token: 0x060001C8 RID: 456 RVA: 0x00005924 File Offset: 0x00003B24
12 public static event Action<LogMessage> OnLogMessage
13 {
15 add
16 {
18 if (@delegate != null && @delegate == null)
19 {
20 return;
21 }
22 }
24 remove
25 {
27 if (@delegate != null && @delegate == null)
28 {
29 return;
30 }
31 }
32 }
33
34 // Token: 0x060001C9 RID: 457 RVA: 0x00005940 File Offset: 0x00003B40
35 public static void LogInfo(string text)
36 {
37 }
38
39 // Token: 0x060001CA RID: 458 RVA: 0x00005950 File Offset: 0x00003B50
40 public static void LogWarning(string text)
41 {
42 }
43
44 // Token: 0x060001CB RID: 459 RVA: 0x00005960 File Offset: 0x00003B60
45 public static void LogError(string text)
46 {
47 }
48
49 // Token: 0x060001CC RID: 460 RVA: 0x00005970 File Offset: 0x00003B70
50 public Logger()
51 {
52 }
53
54 // Token: 0x040001FF RID: 511
56 private static Action<LogMessage> OnLogMessage;
57 }
58}
class f__AnonymousType0<< Count > j__TPar
static void LogWarning(string text)
Definition Logger.cs:40
static Action< LogMessage > OnLogMessage
Definition Logger.cs:13
static void LogError(string text)
Definition Logger.cs:45
static void LogInfo(string text)
Definition Logger.cs:35