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