Mercurial > public > geoquiz
view GeoQuiz/Logic/UserSettingsModel.swift @ 13:bdfff35dd43c
implement RevenueCat
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Wed, 12 Oct 2022 11:47:29 +0200 |
parents | a793f33f05fb |
children |
line wrap: on
line source
// // UserSettingsModel.swift // GeoQuiz // // Created by Dennis Concepción Martín on 7/10/22. // import Foundation struct UserSettings: Codable { var haptics: Bool = true var sound: Bool = true var numberOfLives: Int = 25 }