Mercurial > public > geoquiz
comparison GeoQuiz/Logic/UserSettingsModel.swift @ 10:a793f33f05fb
refactor code and fix layout
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Sat, 08 Oct 2022 21:36:40 +0200 |
parents | GeoQuiz/Models/UserSettingsModel.swift@3540c7efc216 |
children |
comparison
equal
deleted
inserted
replaced
9:3540c7efc216 | 10:a793f33f05fb |
---|---|
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 UserSettings: Codable { | |
11 var haptics: Bool = true | |
12 var sound: Bool = true | |
13 var numberOfLives: Int = 25 | |
14 } |