GildedRose-Refactoring-Kata/swift/Sources/GildedRose/Items/StandardItem.swift
2020-08-16 14:25:03 +02:00

21 lines
282 B
Swift

//
// File.swift
//
//
// Created by Manali Mogre on 16/08/2020.
//
import Foundation
struct StandardItem: CustomisedItemProtocol {
var item: Item
public init(item: Item) {
self.item = item
}
func updateCustomItemQuality() {
}
}