diff options
author | Guillaume Pasquet <dev@etenil.net> | 2019-11-19 04:23:57 +0000 |
---|---|---|
committer | Guillaume Pasquet <dev@etenil.net> | 2019-11-19 04:23:57 +0000 |
commit | 649e209c64a86e951bf24805e369143888f33c9a (patch) | |
tree | d7cb3e64f924392ba9683b01a69d94bae9b8f51b /src/main.rs | |
parent | 591e0dad70e8aa9514039f9193dfcd57d6334a7f (diff) |
`get_` getters don't appear to be idiomatic rust
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 81f537b..c8e3133 100644 --- a/src/main.rs +++ b/src/main.rs @@ -18,7 +18,7 @@ use std::env; use std::io::{stdout, Write}; use world::{Dungeon, DOWN, LEFT, RIGHT, UP}; -fn get_player_name() -> String { +fn player_name() -> String { match env::var_os("USER") { Some(val) => val.into_string().unwrap(), None => String::from("Kshar"), @@ -29,7 +29,7 @@ fn main() { let term_size = terminal::size().unwrap(); let mut state = State::new( - Player::new(get_player_name(), String::from("Warrior"), 30, 10, 10, 20), + Player::new(player_name(), String::from("Warrior"), 30, 10, 10, 20), Dungeon::new(term_size.0 as usize, (term_size.1 - 2) as usize, 5), ); |