public bool TryGetBot(int ItemId, out CatalogBot Bot)
 {
     return(this._botPresets.TryGetValue(ItemId, out Bot));
 }
Beispiel #2
0
 public bool TryGetBot(int ItemId, out CatalogBot Bot) => _botPresets.TryGetValue(ItemId, out Bot);
Beispiel #3
0
 public bool TryGetBot(int ItemId, out CatalogBot Bot)
 {
     return this._botPresets.TryGetValue(ItemId, out Bot);
 }