Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AppSettings.cs
Go to the documentation of this file.
2
3internal static class AppSettings
4{
5 private static volatile bool s_settingsInitalized;
6
7 private static readonly object s_appSettingsLock = new object();
8
10
19
20 private static void EnsureSettingsLoaded()
21 {
23 {
24 return;
25 }
27 {
29 {
32 }
33 }
34 }
35}