mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 06:51:27 +00:00
21 lines
352 B
Swift
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
|
|
}
|
|
}
|