Mercurial > public > geoquiz
comparison GeoQuiz/Models/UserSettingsModel.swift @ 9:3540c7efc216
implement UserSettings
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Fri, 07 Oct 2022 18:50:38 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
8:e09959b4e4a8 | 9:3540c7efc216 |
---|---|
1 // | |
2 // UserSettingsModel.swift | |
3 // GeoQuiz | |
4 // | |
5 // Created by Dennis Concepción Martín on 7/10/22. | |
6 // | |
7 | |
8 import Foundation | |
9 | |
10 struct UserSettingsModel: Codable { | |
11 var haptics: Bool = true | |
12 var sound: Bool = true | |
13 var numberOfLives: Int = 3 | |
14 } |