Esempio n. 1
0
 public bool TryGetClothing(int itemId, out ClothingItem clothing)
 {
     return(_clothing.TryGetValue(itemId, out clothing));
 }
Esempio n. 2
0
 public bool TryGetClothing(int ItemId, out ClothingItem Clothing)
 {
     if (this._clothing.TryGetValue(ItemId, out Clothing))
         return true;
     return false;
 }