8 lines
109 B
Swift
8 lines
109 B
Swift
|
protocol Randomable: CaseIterable {
|
||
|
|
||
|
// MARK: Functions
|
||
|
|
||
|
static func random() -> Self
|
||
|
|
||
|
}
|