This commit is contained in:
Trey t
2023-07-24 11:22:29 -05:00
parent 2753e31f24
commit 2dcd260887
12 changed files with 298 additions and 150 deletions

View File

@@ -12,6 +12,7 @@ enum ThotStyle: Int, CaseIterable {
case never = 2
case recovery = 3
case random = 4
case off
func stringValue() -> String {
switch(self) {
@@ -23,6 +24,8 @@ enum ThotStyle: Int, CaseIterable {
return "Recovery"
case .random:
return "Random"
case .off:
return "Off"
}
}
}