diff options
author | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-13 13:46:46 +0100 |
---|---|---|
committer | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-13 13:46:46 +0100 |
commit | d6bda2f1662c082b98ac5f05ac9acb5838c1db67 (patch) | |
tree | 09db50cafd8c200f0b1c5df9ed7a3c6db1d63fd9 /src/main.rs | |
parent | 53e72c91a743b34eda2db77b69f593e15361623b (diff) |
Better entities
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/main.rs b/src/main.rs index 599c65c..9f5a432 100644 --- a/src/main.rs +++ b/src/main.rs @@ -24,13 +24,12 @@ fn main() { let mut state = State::new( Player::new( - "Kshar".to_string(), - "Warrior".to_string(), + String::from("Kshar"), + String::from("Warrior"), 30, 10, 10, - 20, - 1 + 20 ), Dungeon::new(window.get_max_x() as usize, (window.get_max_y() - 2) as usize, 5), ); @@ -50,11 +49,11 @@ fn main() { // get input and execute it match window.getch() { - Some(Input::Character('h')) => { window.addstr("q: quit\n"); }, - // Some(Input::KeyDown) => { window.addstr("down\n"); }, - // Some(Input::KeyUp) => { window.addch('b'); }, - // Some(Input::KeyLeft) => { window.addch('c'); }, - // Some(Input::KeyRight) => { window.addch('d'); }, + Some(Input::Character('?')) => { window.addstr("q: quit\n"); }, + Some(Input::Character('j')) => { window.addstr("down\n"); }, + Some(Input::Character('k')) => { window.addstr("up\n"); }, + Some(Input::Character('h')) => { window.addstr("left\n"); }, + Some(Input::Character('l')) => { window.addstr("right\n"); }, Some(Input::Character('q')) => break, Some(_) => (), None => (), |