mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-23 11:27:00 +02:00
add basic ios shit
This commit is contained in:
parent
5fd1630a38
commit
b62c912212
4 changed files with 42 additions and 0 deletions
19
src/ios/PomeloApp.swift
Normal file
19
src/ios/PomeloApp.swift
Normal 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() }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue