You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
374 B
21 lines
374 B
//
|
|
// Rules.swift
|
|
// ArkitDoushiQi
|
|
//
|
|
// Created by Louis DUFOUR on 14/06/2024.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
enum Rules: String, CaseIterable, Identifiable, Hashable {
|
|
case Easy = "Simplifié"
|
|
case Regular = "Normal"
|
|
|
|
var id: String { self.rawValue }
|
|
|
|
var localized: LocalizedStringKey {
|
|
LocalizedStringKey(self.rawValue)
|
|
}
|
|
}
|