Initial Commit

This commit is contained in:
Maximilian Roider
2025-11-14 01:49:44 +01:00
commit 73bee649f3
8 changed files with 514 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
//
// Clemens_PlaygroundApp.swift
// Clemens Playground
//
// Created by Maximilian Roider on 14.11.25.
//
import SwiftUI
@main
struct Clemens_PlaygroundApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}