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
PathService.cs
Go to the documentation of this file.
1using System;
2using System.IO;
4
6{
7 // Token: 0x02000B23 RID: 2851
8 internal class PathService : PathService
9 {
10 // Token: 0x0600534E RID: 21326 RVA: 0x00284448 File Offset: 0x00282648
11 public override string GetStoragePath()
12 {
13 return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "My Games");
14 }
15
16 // Token: 0x0600534F RID: 21327 RVA: 0x00284468 File Offset: 0x00282668
17 public PathService()
18 {
19 }
20 }
21}
override string GetStoragePath()
static string GetFolderPath(Environment.SpecialFolder folder)
static string Combine(string path1, string path2)
Definition Path.cs:41