Files
SetGame/Set/SetApp.swift

18 lines
238 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: SetGameModelView())
}
}
}