Mercurial > public > simoleon
view Simoleon/Jobs/HapticsController.swift @ 154:8afba86ab8dd
Refactor code
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Wed, 25 Aug 2021 10:43:12 +0100 |
parents | |
children |
line wrap: on
line source
// // SimpleSuccess.swift // Simoleon // // Created by Dennis Concepción Martín on 20/07/2021. // import SwiftUI class HapticsController { /* Default haptic for success action */ func simpleSuccess() { let generator = UINotificationFeedbackGenerator() generator.notificationOccurred(.success) } }