aboutsummaryrefslogtreecommitdiffstats
path: root/test/rl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'test/rl.rs')
-rw-r--r--test/rl.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/rl.rs b/test/rl.rs
index c6c3b1b..f2ad637 100644
--- a/test/rl.rs
+++ b/test/rl.rs
@@ -39,6 +39,7 @@ fn main () {
draw_map(rows, cols);
let mut (x, y) = (0u, 0u);
+ let mut cursor = true;
loop {
draw_character(x, y);
match io::stdin().read_char() {
@@ -47,6 +48,7 @@ fn main () {
'j' if y < rows - 1 => { draw_ground(x, y); y += 1 }
'k' if y > 0 => { draw_ground(x, y); y -= 1 }
'l' if x < cols - 1 => { draw_ground(x, y); x += 1 }
+ ' ' => { term::info::cursor(cursor); cursor = !cursor }
_ => { }
}
}