21 lines
264 B
Swift
21 lines
264 B
Swift
//
|
|
// Shading.swift
|
|
// Set
|
|
//
|
|
// Created by Oliver Hnát on 08.04.2023.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum CardShading: CaseIterable {
|
|
case solid
|
|
case striped
|
|
case open
|
|
}
|
|
|
|
enum CardSymbol: CaseIterable {
|
|
case diamond
|
|
case squiggles
|
|
case oval
|
|
}
|