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
PlayerPrefs.cs
Go to the documentation of this file.
1using System;
3
4namespace UnityEngine
5{
6 // Token: 0x02000034 RID: 52
7 [NativeHeader("Runtime/Utilities/PlayerPrefs.h")]
8 public class PlayerPrefs
9 {
10 // Token: 0x06000036 RID: 54 RVA: 0x00002400 File Offset: 0x00000600
11 [NativeMethod("SetInt")]
12 private static bool TrySetInt(string key, int value)
13 {
14 throw new MissingMethodException();
15 }
16
17 // Token: 0x06000037 RID: 55 RVA: 0x00002414 File Offset: 0x00000614
18 [NativeMethod("SetFloat")]
19 private static bool TrySetFloat(string key, float value)
20 {
21 throw new MissingMethodException();
22 }
23
24 // Token: 0x06000038 RID: 56 RVA: 0x00002428 File Offset: 0x00000628
25 [NativeMethod("SetString")]
26 private static bool TrySetSetString(string key, string value)
27 {
28 throw new MissingMethodException();
29 }
30
31 // Token: 0x06000039 RID: 57 RVA: 0x0000243C File Offset: 0x0000063C
32 public static void SetInt(string key, int value)
33 {
34 throw new MissingMethodException();
35 }
36
37 // Token: 0x0600003A RID: 58 RVA: 0x00002450 File Offset: 0x00000650
38 public static int GetInt(string key, int defaultValue)
39 {
40 throw new MissingMethodException();
41 }
42
43 // Token: 0x0600003B RID: 59 RVA: 0x00002464 File Offset: 0x00000664
44 public static int GetInt(string key)
45 {
46 throw new MissingMethodException();
47 }
48
49 // Token: 0x0600003C RID: 60 RVA: 0x00002478 File Offset: 0x00000678
50 public static void SetFloat(string key, float value)
51 {
52 throw new MissingMethodException();
53 }
54
55 // Token: 0x0600003D RID: 61 RVA: 0x0000248C File Offset: 0x0000068C
56 public static float GetFloat(string key, float defaultValue)
57 {
58 throw new MissingMethodException();
59 }
60
61 // Token: 0x0600003E RID: 62 RVA: 0x000024A0 File Offset: 0x000006A0
62 public static float GetFloat(string key)
63 {
64 throw new MissingMethodException();
65 }
66
67 // Token: 0x0600003F RID: 63 RVA: 0x000024B4 File Offset: 0x000006B4
68 public static void SetString(string key, string value)
69 {
70 throw new MissingMethodException();
71 }
72
73 // Token: 0x06000040 RID: 64 RVA: 0x000024C8 File Offset: 0x000006C8
74 public static string GetString(string key, string defaultValue)
75 {
76 throw new MissingMethodException();
77 }
78
79 // Token: 0x06000041 RID: 65 RVA: 0x000024DC File Offset: 0x000006DC
80 public static string GetString(string key)
81 {
82 throw new MissingMethodException();
83 }
84
85 // Token: 0x06000042 RID: 66 RVA: 0x000024F0 File Offset: 0x000006F0
86 public static bool HasKey(string key)
87 {
88 throw new MissingMethodException();
89 }
90
91 // Token: 0x06000043 RID: 67 RVA: 0x00002504 File Offset: 0x00000704
92 public static void DeleteKey(string key)
93 {
94 throw new MissingMethodException();
95 }
96
97 // Token: 0x06000044 RID: 68 RVA: 0x00002518 File Offset: 0x00000718
98 [NativeMethod("DeleteAllWithCallback")]
99 public static void DeleteAll()
100 {
101 throw new MissingMethodException();
102 }
103
104 // Token: 0x06000045 RID: 69 RVA: 0x0000252C File Offset: 0x0000072C
105 [NativeMethod("Sync")]
106 public static void Save()
107 {
108 throw new MissingMethodException();
109 }
110 }
111}
class f__AnonymousType0<< Count > j__TPar
static bool TrySetFloat(string key, float value)
static void SetInt(string key, int value)
static float GetFloat(string key)
static int GetInt(string key)
static void DeleteAll()
static void SetString(string key, string value)
static void SetFloat(string key, float value)
static bool TrySetInt(string key, int value)
static string GetString(string key)
static bool HasKey(string key)
static void DeleteKey(string key)
static float GetFloat(string key, float defaultValue)
static bool TrySetSetString(string key, string value)
static int GetInt(string key, int defaultValue)
static string GetString(string key, string defaultValue)