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
GUILayout.cs
Go to the documentation of this file.
1using System;
3
4namespace UnityEngine
5{
6 // Token: 0x02000015 RID: 21
7 public class GUILayout
8 {
9 // Token: 0x06000098 RID: 152 RVA: 0x00003428 File Offset: 0x00001628
10 public static void Label(string text, params GUILayoutOption[] options)
11 {
12 if (!true)
13 {
14 }
16 GUIStyle label = GUI.skin.m_label;
18 }
19
20 // Token: 0x06000099 RID: 153 RVA: 0x00003454 File Offset: 0x00001654
21 private static void DoLabel(GUIContent content, GUIStyle style, GUILayoutOption[] options)
22 {
23 if (!true)
24 {
25 }
26 Rect rect = GUILayoutUtility.GetRect(content, style, options);
27 if (!true)
28 {
29 }
30 }
31
32 // Token: 0x0600009A RID: 154 RVA: 0x00003470 File Offset: 0x00001670
33 public static void BeginArea(Rect screenRect, GUIStyle style)
34 {
35 if (!true)
36 {
37 }
38 }
39
40 // Token: 0x0600009B RID: 155 RVA: 0x00003480 File Offset: 0x00001680
41 public static void BeginArea(Rect screenRect, GUIContent content, GUIStyle style)
42 {
43 int num = 1;
45 if (num == 0)
46 {
47 }
48 throw new MissingMethodException();
49 }
50
51 // Token: 0x0600009C RID: 156 RVA: 0x000034F8 File Offset: 0x000016F8
52 public static void EndArea()
53 {
55 throw new MissingMethodException();
56 }
57
58 // Token: 0x0600009D RID: 157 RVA: 0x000020F5 File Offset: 0x000002F5
59 public static GUILayoutOption Width(float width)
60 {
61 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
62 }
63
64 // Token: 0x0600009E RID: 158 RVA: 0x000020F5 File Offset: 0x000002F5
65 public static GUILayoutOption Height(float height)
66 {
67 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
68 }
69 }
70}
class f__AnonymousType0<< Count > j__TPar
static GUIContent Temp(string t)
Definition GUIContent.cs:83
static Rect GetRect(GUIContent content, GUIStyle style, params GUILayoutOption[] options)
static void EndArea()
Definition GUILayout.cs:52
static GUILayoutOption Width(float width)
Definition GUILayout.cs:59
static void DoLabel(GUIContent content, GUIStyle style, GUILayoutOption[] options)
Definition GUILayout.cs:21
static GUILayoutOption Height(float height)
Definition GUILayout.cs:65
static void Label(string text, params GUILayoutOption[] options)
Definition GUILayout.cs:10
static void BeginArea(Rect screenRect, GUIStyle style)
Definition GUILayout.cs:33
static void BeginArea(Rect screenRect, GUIContent content, GUIStyle style)
Definition GUILayout.cs:41
static void CheckOnGUI()
static GUISkin skin
Definition GUI.cs:41