From 0167f2be4e9a7f63384fabdcece360c8855d7ce5 Mon Sep 17 00:00:00 2001 From: Hope Date: Mon, 21 Jul 2025 21:40:33 -0400 Subject: [PATCH] ck1 - indicated the method that performs each action It required some focus to track where I was. Distractions made it a little tricky. I found that the comments were helpful and jumping to each method in the order in which it was called help me to understand the flow. --- notes.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/notes.md b/notes.md index 67cc9f6..43ba24c 100644 --- a/notes.md +++ b/notes.md @@ -6,13 +6,16 @@ Which class is responsible for each of the following behaviors? For each, explain how the behavior is accomplished. ### Checking to see whether the game is over +game.is_over ### Determining which actions are available at a particular state +game.get_actions ### Showing the board +view.print_board ### Choosing which action to play on a turn - +player.choose_action ## Checkpoint 2 Notes