#cse210-tc06 Batter Batter is a game in which the player seeks to bat the ball back towards the top of the screen to break the bricks. Miss the ball and its game over!
Getting Started Make sure you have Python 3.8.0 or newer installed and running on your machine. Open a terminal and browse to the project's root folder. Start the program by running the following command.
python3 mastermind You can also run the program from an IDE like Visual Studio Code. Start your IDE and open the project folder. Select the main module inside the hunter folder and click the "run" icon.
Project Structure The project files and folders are organized as follows:
root (project root folder) +-- mastermind (source code for game) +-- game (specific game classes) +-- action.py (python game file) +-- actor.py (python game file) +-- constants.py (python game file) +-- game_state.py (python game file) +-- handle_collisons_action.py (python game file) +-- input_service.py (python game file) +-- move_actor_actions.py (python game file) +-- output_service.py (python game file) +-- point.py (python game file) +-- director.py (python game file)
+-- init.py (python package file) +-- main.py (entry point for program) +-- README.md (general info) Required Technologies Python 3.8.0 Authors Joshua Burk: [email protected] Austin Howard: [email protected] Jacob Johnson: [email protected] Caleb Lan: [email protected]