console games
A hobby project for console games. New games are coming, hopefully 🙂🙂🙂. And I'm open for contributions.
Usage
use GameCenter;
Games
List of available games:
- Guess the Word
- Guess the Number
- Word Type
To run an individual game
use ;
Contribution
I need your help!!! Let's grow this project together. If you have any ideas, wether it's a new game, performance improvements, etc, please open an issue or a pull request.
To create a game
A game must implement the Play trait.
// games/my_game.rs
;
Lastly, make the game visible in the module tree.
// games.rs
// --- snip ---
To add a new game to the game center
Add the game to the return value of GameCenter::games method.
// game_center.rs
// --- snip ---