In this game you control a figure at the bottom of the screen who is trying to collect falling gems and avoid the falling rocks. Each gem collected is one point and each rock you collect subtracts a point from your score.
There are a total of 8 classes in use in this game.
Make sure you have dotnet 6.0 or newer installed on your machine. Open a terminal and browse to the project's root folder. Start the program by running the following commands.
dotnet build
dotnet run
The project files and folders are organized as follows:
root (project root folder)
+-- Game (source code folder)
+-- Program.cs (program entry point)
+-- README.md (general info)
+-- Unit04.csproj (dotnet project file)
Justin Morley