Added comment

This commit is contained in:
Chomp
2025-02-02 10:18:40 +00:00
parent 89b5c7e368
commit 2bc720256a
+5 -2
View File
@@ -13,11 +13,14 @@ public class PresetHelper(
ICloner _cloner
)
{
protected Dictionary<string, List<string>> _lookup = new();
/// <summary>
/// Preset cache - key = item tpl, value = preset ids
/// </summary>
protected Dictionary<string, HashSet<string>> _lookup = new();
protected Dictionary<string, Preset> _defaultEquipmentPresets;
protected Dictionary<string, Preset>? _defaultWeaponPresets;
public void HydratePresetStore(Dictionary<string, List<string>> input)
public void HydratePresetStore(Dictionary<string, HashSet<string>> input)
{
_lookup = input;
}