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