AcManager.Tools.Managers.Presets.PresetsManager.GetBuiltInPresetsList C# (CSharp) Method

GetBuiltInPresetsList() private method

private GetBuiltInPresetsList ( string category ) : List
category string
return List
        private List<BuiltInPresetEntry> GetBuiltInPresetsList(string category) {
            if (_builtInPresets.ContainsKey(category)) return _builtInPresets[category];
            return _builtInPresets[category] = new List<BuiltInPresetEntry>(1);
        }