diff options
author | Griffin Smith <root@gws.fyi> | 2019-07-07T16·41-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2019-07-07T16·41-0400 |
commit | c643ee1dfcb8d44b8cd198c768f31dd7659f2ff9 (patch) | |
tree | 8178c613e55c00944a6417a85ad304cf2af05587 /src/main.rs | |
parent | 78a52142d191d25a74cb2124d5cca8a69d51ba7f (diff) |
Add messages, with global lookup map
Add support for messages, along with a global lookup map and random choice of messages.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index f2c3d00f96d7..6b0ae18181ef 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,18 +3,26 @@ extern crate termion; extern crate log; extern crate config; extern crate log4rs; +extern crate serde; +extern crate toml; #[macro_use] extern crate serde_derive; #[macro_use] extern crate clap; #[macro_use] extern crate prettytable; +#[macro_use] +extern crate lazy_static; +#[macro_use] +extern crate maplit; + mod display; mod game; #[macro_use] mod types; mod entities; +mod messages; mod settings; use clap::App; |