Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IPathService.cs
Go to the documentation of this file.
1namespace ReLogic.OS;
2
3public interface IPathService
4{
5 string GetStoragePath();
6
7 string GetStoragePath(string subfolder);
8
9 string ExpandPathVariables(string path);
10
11 void OpenURL(string url);
12
13 bool MoveToRecycleBin(string path);
14}
string ExpandPathVariables(string path)
string GetStoragePath(string subfolder)
void OpenURL(string url)
bool MoveToRecycleBin(string path)