Skip to content

Instantly share code, notes, and snippets.

@AppleCEO
Created August 22, 2025 11:47
Show Gist options
  • Save AppleCEO/e99b8221f9e602c5d997f06e2e64467e to your computer and use it in GitHub Desktop.
Save AppleCEO/e99b8221f9e602c5d997f06e2e64467e to your computer and use it in GitHub Desktop.
enum Game {
case singlePlayer(SinglePlayerGame)
case multiPlayer(MultiPlayerGame)
case ai(AIGame)
}
let aiGame = ...
let game = Game.ai(aiGame)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment