15 lines
276 B
Swift
15 lines
276 B
Swift
//
|
|
// Disabling.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 7/22/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/// Any object that can be disabled, which may change the appearance
|
|
public protocol Disabling {
|
|
/// Whether this object is disabled or not
|
|
var disabled: Bool { get set }
|
|
}
|