15 lines
273 B
Swift
15 lines
273 B
Swift
//
|
|
// Enabling.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 8/25/23.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/// Any object that can be Enabled, which may change the appearance
|
|
public protocol Enabling {
|
|
/// Whether this object is enabled or not
|
|
var isEnabled: Bool { get set }
|
|
}
|