GildedRose-Refactoring-Kata/swift/Sources/GildedRose/Items/SulfurasItem.swift
2020-08-16 21:04:26 +02:00

20 lines
345 B
Swift

//
// File.swift
//
//
// Created by Manali Mogre on 16/08/2020.
//
import Foundation
struct SulfurasItem: CustomisedItemProtocol {
var item: Item
public init(item: Item) {
self.item = item
}
func updateItemState() {
// No code as there is no change in quality or sell in days of sulfuras item
}
}