CasinoGames/Blackjack/Blackjack/ContentView.swift
Matt Bruce 78f7cb1544 Reorganize repo: move git to root, add Blackjack and CasinoKit
- Move .git from Baccarat/ to CasinoGames root
- Add Blackjack game project
- Add CasinoKit shared framework
- Add .gitignore for Xcode/Swift projects
- Add Agents.md and GAME_TEMPLATE.md documentation
- Add CasinoGames.xcworkspace
2025-12-22 13:18:29 -06:00

19 lines
216 B
Swift

//
// ContentView.swift
// Blackjack
//
// Root view for the Blackjack app.
//
import SwiftUI
struct ContentView: View {
var body: some View {
GameTableView()
}
}
#Preview {
ContentView()
}