30 lines
576 B
Swift
30 lines
576 B
Swift
//
|
|
// BlackjackApp.swift
|
|
// Blackjack
|
|
//
|
|
// Main application entry point.
|
|
//
|
|
|
|
import SwiftUI
|
|
import CasinoKit
|
|
|
|
@main
|
|
struct BlackjackApp: App {
|
|
init() {
|
|
// Configure sound manager defaults
|
|
SoundManager.shared.soundEnabled = true
|
|
SoundManager.shared.hapticsEnabled = true
|
|
}
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
// #if DEBUG
|
|
// IconGeneratorView()
|
|
// #else
|
|
ContentView() // your real app root
|
|
// #endif
|
|
}
|
|
}
|
|
}
|
|
|