blob: 704f09fa28ecea138f869561457ff0a623c7a4f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// metal_testApp.swift
// metal_test
//
// Created by Ian C on 25/11/2023.
//
import SwiftUI
@main
struct metal_testApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
|