summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp
index c0d59af..8f5208f 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -6,14 +6,13 @@ int main()
Frame map("scripts/map.txt",0,0);
Frame view(map,s.getHeight(),s.getWidth(),0,0);
- List L;
- Location l;
- l.x =150;
- l.y =150;
+ Location l(150,150);
Character cursor('X',3,l);
map.fillWindow();
+ List L(map.getImpassable());
+
L.draw(map.getWin());
cursor.draw(map.getWin());