mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 22:41:30 +00:00
21 lines
282 B
Swift
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() {
|
|
|
|
}
|
|
}
|