mirror of
https://github.com/bvanroll/watchos_glsl.git
synced 2025-08-28 19:42:46 +00:00
18 lines
267 B
Swift
18 lines
267 B
Swift
//
|
|
// watchos_glslApp.swift
|
|
// watchos_glsl Watch App
|
|
//
|
|
// Created by Beppe Vanrolleghem on 01/06/2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct watchos_glsl_Watch_AppApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|