GildedRose-Refactoring-Kata/swift/Sources/GildedRose/Items/SulfurasItem.swift
2020-08-17 20:14:47 +02:00

21 lines
352 B
Swift

//
// File.swift
//
//
// Created by Manali Mogre on 16/08/2020.
//
import Foundation
struct SulfurasItem: CustomisedItem {
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
return
}
}