Defined the Randomable protocol in the library target.

This commit is contained in:
2025-02-22 00:53:22 +01:00
parent 17426f264a
commit c5fc608c23
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,7 @@
protocol Randomable: CaseIterable {
// MARK: Functions
static func random() -> Self
}