console games
A hobby project for console games. There is only one game for now, but I plan to add more, hopefully 👉😌👉.
Usage
use GameManager;
Games
List of available games:
- Guess the Word
To run an individual game
use ;
A hobby project for console games. There is only one game for now, but I plan to add more, hopefully 👉😌👉.
use console_games::game_manager::GameManager;
fn main() {
GameManager::start();
}
List of available games:
use console_games::{games::guess_the_word::GuessTheWord, Play};
fn main() {
println!("{}", GuessTheWord.name());
GuessTheWord.print_intro();
GuessTheWord.start();
}