AssemblyCSharp.BackendAuth.Load C# (CSharp) Method

Load() public static method

public static Load ( ) : BackendAuth
return BackendAuth
        public static BackendAuth Load()
        {
            var json = (Dictionary<string, object>)Json.Deserialize(File.ReadAllText(StoragePath));
            _current = FromJSON(json);
            return _current;
        }