Created
February 15, 2021 08:17
-
-
Save petrosDemetrakopoulos/90fc4793041a2397d0827c480c039df1 to your computer and use it in GitHub Desktop.
Roulette sector model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum Color: String { | |
case red = "RED" | |
case black = "BLACK" | |
case green = "ZERO" | |
case empty | |
} | |
struct Sector: Equatable { | |
let number: Int | |
let color: Color | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment