Mercurial > public > geoquiz
view GeoQuiz/Logic/HapticsClass.swift @ 16:1011e56b7832
implement user profile
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Thu, 20 Oct 2022 13:49:42 +0200 |
parents | 136928bae534 |
children |
line wrap: on
line source
// // HapticsClass.swift // GeoQuiz // // Created by Dennis Concepción Martín on 18/9/22. // import Foundation import SwiftUI class Haptics { private var user = User() func success() { if user.data.haptics { let generator = UINotificationFeedbackGenerator() generator.notificationOccurred(.success) } } func error() { if user.data.haptics { let generator = UINotificationFeedbackGenerator() generator.notificationOccurred(.error) } } }