console games
A hobby project for console games. New games are coming, hopefully 👉😌👉.
Usage
use GameCenter;
Games
List of available games:
- Guess the Word
- Guess the Number
- Word Type
To run an individual game
use ;
A hobby project for console games. New games are coming, hopefully 👉😌👉.
use console_games::game_center::GameCenter;
fn main() {
GameCenter::enter();
}
List of available games:
use console_games::{games::guess_the_word::GuessTheWord, Play};
fn main() {
println!("{}", GuessTheWord.name());
GuessTheWord.print_intro();
GuessTheWord.start();
}