14 lines
200 B
Swift
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()
|
|
}
|