Files
SetGame/Set/SetApp.swift

18 lines
229 B
Swift

//
// SetApp.swift
// Set
//
// Created by Oliver Hnát on 08.04.2023.
//
import SwiftUI
@main
struct SetApp: App {
var body: some Scene {
WindowGroup {
SetGameView(game: SetGame())
}
}
}