Project Setup
Our application needs a place to start.
Create a file called main.rs
.
Then add the following code:
This will create a new application with the name "Gallery Shooter". The application manages all utilities we will need to run our game.
Let's think about what we need to make our game.
We need a player, targets, weapon.
So let's define them.
We a need a place to put them.
Last updated