add basic ios shit

This commit is contained in:
lizzie 2026-03-26 17:18:30 +00:00
parent 00221eca72
commit 26b8104892
4 changed files with 42 additions and 0 deletions

19
src/ios/PomeloApp.swift Normal file
View file

@ -0,0 +1,19 @@
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: Copyright 2024 Pomelo, Stossy11
// SPDX-License-Identifier: GPL-3.0-or-later
import SwiftUI
infix operator --: LogicalDisjunctionPrecedence
func --(lhs: Bool, rhs: Bool) -> Bool {
return lhs || rhs
}
@main
struct PomeloApp: App {
var body: some Scene {
WindowGroup { ContentView() }
}
}