13 lines
142 B
Swift
13 lines
142 B
Swift
//
|
|
// Resetable.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 8/3/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol Resettable {
|
|
func reset()
|
|
}
|