Skip to content

Instantly share code, notes, and snippets.

@petrosDemetrakopoulos
Created February 15, 2021 08:17
Show Gist options
  • Save petrosDemetrakopoulos/90fc4793041a2397d0827c480c039df1 to your computer and use it in GitHub Desktop.
Save petrosDemetrakopoulos/90fc4793041a2397d0827c480c039df1 to your computer and use it in GitHub Desktop.
Roulette sector model
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