diff options
Diffstat (limited to 'Captura/Core Extensions/Notification+AppEvents.swift')
| -rw-r--r-- | Captura/Core Extensions/Notification+AppEvents.swift | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Captura/Core Extensions/Notification+AppEvents.swift b/Captura/Core Extensions/Notification+AppEvents.swift new file mode 100644 index 0000000..809c00e --- /dev/null +++ b/Captura/Core Extensions/Notification+AppEvents.swift @@ -0,0 +1,9 @@ +import Foundation + +extension Notification.Name { + static let startAreaSelection = Notification.Name("startSelectingArea") + static let startRecording = Notification.Name("startRecording") + static let stopRecording = Notification.Name("stopRecording") + static let finalizeRecording = Notification.Name("finalizeRecording") + static let reset = Notification.Name("reset") +} |