summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/main.rs b/src/main.rs
index 2e8ca3e..cd06942 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -36,9 +36,8 @@ fn main() {
let mut cursor = Character::new('X', 3, Location{x:150,y:150});
- let list = List::new(map.impassable.to_vec());
+ let mut list = List::new(map.impassable.to_vec());
- let paused = false;
loop{
match main.getch() {
Some(Input::Character(c)) => {
@@ -54,13 +53,15 @@ fn main() {
_ => ()
}
- if !paused {
- list.action();
- }
+ list.action();
map.fill();
- list.draw(&map.window);
- cursor.draw(&map.window);
+
+ for man in list.men.iter(){
+ map.draw(man);
+ }
+ map.draw(&cursor);
+
view.center(cursor, &map.window);
}