Created
August 22, 2025 11:47
-
-
Save AppleCEO/e99b8221f9e602c5d997f06e2e64467e to your computer and use it in GitHub Desktop.
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 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