tokenary/Tokenary iOS/Library/Haptic.swift
2021-12-16 00:40:29 +03:00

12 lines
202 B
Swift

// Copyright © 2021 Tokenary. All rights reserved.
import UIKit
struct Haptic {
static func success() {
UINotificationFeedbackGenerator().notificationOccurred(.success)
}
}