From b845e96a09a929f5b4a8b27c12ccd3dc3cdb54e2 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 22 May 2024 16:51:02 +0200 Subject: [PATCH] add historic --- .../Views/Historic/DetailGameHistory.swift | 20 +++++++++++++++++++ .../Views/Historic/EnteteHistory.swift | 20 +++++++++++++++++++ .../Views/Historic/History.swift | 20 +++++++++++++++++++ 3 files changed, 60 insertions(+) create mode 100644 ArkitDoushiQi/ArkitDoushiQi/Views/Historic/DetailGameHistory.swift create mode 100644 ArkitDoushiQi/ArkitDoushiQi/Views/Historic/EnteteHistory.swift create mode 100644 ArkitDoushiQi/ArkitDoushiQi/Views/Historic/History.swift diff --git a/ArkitDoushiQi/ArkitDoushiQi/Views/Historic/DetailGameHistory.swift b/ArkitDoushiQi/ArkitDoushiQi/Views/Historic/DetailGameHistory.swift new file mode 100644 index 0000000..5b6f589 --- /dev/null +++ b/ArkitDoushiQi/ArkitDoushiQi/Views/Historic/DetailGameHistory.swift @@ -0,0 +1,20 @@ +// +// DetailGameHistory.swift +// ArkitDoushiQi +// +// Created by Enzo JOLYS on 22/05/2024. +// + +import SwiftUI + +struct DetailGameHistory: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +struct DetailGameHistory_Previews: PreviewProvider { + static var previews: some View { + DetailGameHistory() + } +} diff --git a/ArkitDoushiQi/ArkitDoushiQi/Views/Historic/EnteteHistory.swift b/ArkitDoushiQi/ArkitDoushiQi/Views/Historic/EnteteHistory.swift new file mode 100644 index 0000000..d4974b4 --- /dev/null +++ b/ArkitDoushiQi/ArkitDoushiQi/Views/Historic/EnteteHistory.swift @@ -0,0 +1,20 @@ +// +// EnteteHistory.swift +// ArkitDoushiQi +// +// Created by Enzo JOLYS on 22/05/2024. +// + +import SwiftUI + +struct EnteteHistory: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +struct EnteteHistory_Previews: PreviewProvider { + static var previews: some View { + EnteteHistory() + } +} diff --git a/ArkitDoushiQi/ArkitDoushiQi/Views/Historic/History.swift b/ArkitDoushiQi/ArkitDoushiQi/Views/Historic/History.swift new file mode 100644 index 0000000..c7f8020 --- /dev/null +++ b/ArkitDoushiQi/ArkitDoushiQi/Views/Historic/History.swift @@ -0,0 +1,20 @@ +// +// History.swift +// ArkitDoushiQi +// +// Created by Enzo JOLYS on 22/05/2024. +// + +import SwiftUI + +struct History: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +struct History_Previews: PreviewProvider { + static var previews: some View { + History() + } +}