Default screen with cards on it working

This commit is contained in:
2023-04-09 17:35:53 +02:00
parent 94113e80fd
commit 9a1f86156f
7 changed files with 288 additions and 27 deletions

20
Set/Uniqueness.swift Normal file
View File

@@ -0,0 +1,20 @@
//
// 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
}