diff options
Diffstat (limited to 'CAO_GameManager.py')
-rw-r--r-- | CAO_GameManager.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/CAO_GameManager.py b/CAO_GameManager.py new file mode 100644 index 0000000..afd7f09 --- /dev/null +++ b/CAO_GameManager.py @@ -0,0 +1,18 @@ +from CAO_Game import CAO_Game +from CAO_Cards import CAO_Cards + +class CAO_GameManager(): + def __init__(self): + self.games = {} + + self.black_cards = CAO_Cards.get_black_cards() + self.white_cards = CAO_Cards.get_white_cards() + + def join_game(self, game_name): + game = self.games.get(game_name) + + if game is None: + print('Starting new game') + game = self.games[game_name] = CAO_Game(self.black_cards, self.white_cards) + + return game |