A Rust clone of the GamePigeon game Filler, created as a project for the Boot.dev Back-End Developer course.
To player filler_rs:
- Install the Rust toolchain with rustup
- Clone this repo by running the command
git clone https://www.github.com/EMBradley/filler_rs
- Navigate into the repo with
cd filler_rs
- Run the game with
cargo run
Filler is a very simple game. Here's how it's played:
- The game starts with a randomly generated grid of colored tiles. To begin, player one owns the bottom left tile, and player two owns the top right tile.
- On each player's turn, they choose a color to change their tiles to, and they gain control of any unowned tiles of that color adjacent to the tiles they already control.
- The game is over when all tiles are owned. The player with the most tiles wins.