mirror of
https://github.com/dscyrescotti/Memola.git
synced 2026-04-25 01:58:52 +02:00
14 lines
175 B
Swift
14 lines
175 B
Swift
//
|
|
// HistoryEvent.swift
|
|
// Memola
|
|
//
|
|
// Created by Dscyre Scotti on 5/4/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum HistoryEvent {
|
|
case stroke(any Stroke)
|
|
case photo(Photo)
|
|
}
|