diff --git a/VDS/Protocols/Resetable.swift b/VDS/Protocols/Resetable.swift new file mode 100644 index 00000000..6dde1028 --- /dev/null +++ b/VDS/Protocols/Resetable.swift @@ -0,0 +1,12 @@ +// +// Resetable.swift +// VDS +// +// Created by Matt Bruce on 8/3/22. +// + +import Foundation + +public protocol Resettable { + func reset() +}