Mercurial > public > simoleon
view Simoleon/Helpers/HapticsHelper.swift @ 159:35628bac01f5
Fix a bug that selected wrong symbol in pair
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Sat, 28 Aug 2021 19:18:50 +0100 |
parents | 84137052813d |
children | f5de15e06c77 |
line wrap: on
line source
// // SimpleSuccess.swift // Simoleon // // Created by Dennis Concepción Martín on 20/07/2021. // import SwiftUI class Haptics { // MARK: - Simple success func simpleSuccess() { let generator = UINotificationFeedbackGenerator() generator.notificationOccurred(.success) } }