mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 14:31:28 +00:00
20 lines
345 B
Swift
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
|
|
}
|
|
}
|