Final version of project

Did not have a chance to add a chaser character, still might try that,
but wanted to make sure I submit my working version first.
This commit is contained in:
Chris Mekelburg
2024-12-13 19:45:14 -05:00
parent 60a4069e87
commit ba4a255ca1
12 changed files with 5 additions and 62 deletions

View File

@@ -5,7 +5,7 @@ from board import Board
width = 25
height = 25
state= {"Score":00}
state= {"Score": 0}
num_snacks = 10
board = Board(width,height,num_snacks,state) #sets the original board
@@ -13,6 +13,6 @@ board = Board(width,height,num_snacks,state) #sets the original board
game = Game(
board.get_agents(num_snacks,state),
state,
board_size = (width, height),debug=True
board_size = (width, height),debug=False
)
game.play()