vds_ios/VDS/Protocols/Resetable.swift
Matt Bruce 0a9b4ec368 added comments for reset()
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-07-26 10:13:49 -05:00

14 lines
200 B
Swift

//
// Resetable.swift
// VDS
//
// Created by Matt Bruce on 8/3/22.
//
import Foundation
public protocol Resettable {
/// Called to reset back an objects default settings.
func reset()
}