mirror of
https://github.com/dscyrescotti/Memola.git
synced 2026-04-28 11:37:09 +02:00
15 lines
181 B
Swift
15 lines
181 B
Swift
//
|
|
// ToolSelection.swift
|
|
// Memola
|
|
//
|
|
// Created by Dscyre Scotti on 6/13/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum ToolSelection: Equatable {
|
|
case none
|
|
case pen
|
|
case photo
|
|
}
|