A hobby project for console games. There is only one game for now, but I plan to add more, hopefully 👉😌👉.
```rust use consolegames::gamemanager::GameManager;
fn main() { GameManager::start(); } ```
List of available games:
```rust use consolegames::{games::guessthe_word::GuessTheWord, Play};
fn main() { println!("{}", GuessTheWord.name()); GuessTheWord.print_intro(); GuessTheWord.start(); } ```