Merge pull request 'ComponentWithVariable' (#18) from ComponentWithVariable into dev
Reviewed-on: #18pull/21/head
commit
effb257948
Binary file not shown.
@ -0,0 +1,16 @@
|
||||
//
|
||||
// AI.swift
|
||||
// ArkitDoushiQi
|
||||
//
|
||||
// Created by Johan LACHENAL on 28/05/2024.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
enum AI: String, CaseIterable, Identifiable, Hashable {
|
||||
case RandomAction = "IA Random"
|
||||
case EasyTrainedAI = "IA Facile"
|
||||
case MediumTrainedAI = "IA Intermédiaire"
|
||||
|
||||
var id: String { self.rawValue }
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
//
|
||||
// Language.swift
|
||||
// ArkitDoushiQi
|
||||
//
|
||||
// Created by Johan LACHENAL on 28/05/2024.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
enum Language: String, CaseIterable, Identifiable, Hashable {
|
||||
case French = "Français"
|
||||
case English = "English"
|
||||
var id: String { self.rawValue }
|
||||
}
|
Loading…
Reference in new issue