aboutsummaryrefslogtreecommitdiff
path: root/Hotline/Views/HotlineState.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Hotline/Views/HotlineState.swift')
-rw-r--r--Hotline/Views/HotlineState.swift24
1 files changed, 0 insertions, 24 deletions
diff --git a/Hotline/Views/HotlineState.swift b/Hotline/Views/HotlineState.swift
deleted file mode 100644
index 9ae4940..0000000
--- a/Hotline/Views/HotlineState.swift
+++ /dev/null
@@ -1,24 +0,0 @@
-import Foundation
-import SwiftUI
-
-@Observable
-class HotlineState {
- var agreementPresented = false
- var trackerPresented = true
-
- func presentTracker() {
- self.trackerPresented = true
- }
-
- func dismissTracker() {
- self.trackerPresented = false
- }
-
- func presentAgreement() {
- self.agreementPresented = true
- }
-
- func dismissAgreement() {
- self.agreementPresented = false
- }
-}