Files
Yusuke Hosonuma 275f8f321f refactor: package
2022-04-27 13:49:36 +09:00

19 lines
301 B
Swift

//
// PatternIdentifiable.swift
// LifeGameApp
//
// Created by Yusuke Hosonuma on 2020/09/18.
//
import Foundation
protocol PatternIdentifiable {
var patternID: String { get }
}
extension PatternIdentifiable {
var jsonURL: URL {
Web.patternJSONURL(patternID: patternID)
}
}