Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetStoragePath() [1/2]

override string ReLogic.OS.OSX.PathService.GetStoragePath ( )
inline

Implements ReLogic.OS.IPathService.

Definition at line 10 of file PathService.cs.

11 {
12 string environmentVariable = Environment.GetEnvironmentVariable("HOME");
13 if (string.IsNullOrEmpty(environmentVariable))
14 {
15 return ".";
16 }
17 return environmentVariable + "/Library/Application Support";
18 }
static ? string GetEnvironmentVariable(string variable)

References System.Environment.GetEnvironmentVariable().