CasinoGames/Baccarat/BaccaratApp.swift

21 lines
345 B
Swift

//
// BaccaratApp.swift
// Baccarat
//
// Created by Matt Bruce on 12/16/25.
//
import SwiftUI
@main
struct BaccaratApp: App {
var body: some Scene {
WindowGroup {
// #if DEBUG
// IconGeneratorView()
// #else
ContentView() // your real app root
// #endif
}
}
}