You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
404 B
25 lines
404 B
//
|
|
// GameView.swift
|
|
// ArkitDoushiQi
|
|
//
|
|
// Created by Enzo JOLYS on 27/05/2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
import SpriteKit
|
|
|
|
struct GameView: View {
|
|
|
|
var game:GameScene = GameScene(size: CGSize(width: 940, height: 740))
|
|
|
|
var body: some View {
|
|
SpriteView(scene: game)
|
|
}
|
|
}
|
|
|
|
struct GameView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
GameView()
|
|
}
|
|
}
|