blob: 124db6b61f22e11c2007ab206f56a5778512e1b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import SwiftUI
@Observable
class ApplicationState {
static let shared = ApplicationState()
var activeHotline: Hotline? = nil
var activeServerState: ServerState? = nil
// Frontmost server window information
var activeServerID: UUID? = nil
var activeServerBanner: NSImage? = nil
var activeServerName: String? = nil
}
|