Add watchOS support

This commit is contained in:
2025-04-04 18:23:12 +02:00
parent 96b0466deb
commit 384ee97cb7
20 changed files with 857 additions and 48 deletions
+18
View File
@@ -0,0 +1,18 @@
//
// SalutManager.swift
// meterios
//
// (c) 2025 Martin "maride" Dessauer
//
class SalutManager {
static let salutes: Array<String> = [
"Prost!", "Guten!", "Kippis!", "Cheers!", "Chin-Chin!", "Zum Wohl!", "Salut!", "לחיים",
"Jamas!", // thanks cocorilla
"Budmo!", "за здоровье!", "Sláinte!", "乾杯", "Noroc!", // thanks ChaosAyumi
]
static func getSalute() -> String {
return salutes[Int.random(in: 0..<salutes.count)]
}
}