From 9f0de11816fdbd0981aeaa3a840e3942fd249eb4 Mon Sep 17 00:00:00 2001 From: tom Date: Sun, 22 Nov 2015 15:21:30 -0600 Subject: cleaned up a little and added pausing, the location vector in list.*pp is overkill, should probably just be using the men vector for everything --- inc/Screen.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'inc/Screen.hpp') diff --git a/inc/Screen.hpp b/inc/Screen.hpp index 505f4e2..2108b97 100644 --- a/inc/Screen.hpp +++ b/inc/Screen.hpp @@ -12,8 +12,8 @@ class Screen Screen(); ~Screen(); void ping(string msg); - int getHeight(); - int getWidth(); + int getHeight(){return height;} + int getWidth(){return width;} private: int height, width; }; -- cgit v1.2.3