console games

A hobby project for console games. There is only one game for now, but I plan to add more, hopefully 👉😌👉.

Usage

```rust use consolegames::gamemanager::GameManager;

fn main() { GameManager::start(); } ```

Games

List of available games:

To run an individual game

```rust use consolegames::{games::guessthe_word::GuessTheWord, Play};

fn main() { println!("{}", GuessTheWord.name()); GuessTheWord.print_intro(); GuessTheWord.start(); } ```