diff options
| author | tom <tom@ground-control> | 2015-11-22 15:21:30 -0600 |
|---|---|---|
| committer | tom <tom@ground-control> | 2015-11-22 15:21:30 -0600 |
| commit | 9f0de11816fdbd0981aeaa3a840e3942fd249eb4 (patch) | |
| tree | 2a0a8f5ac36b249e09f13848b33ab40d4c42b943 /inc/Screen.hpp | |
| parent | 86bf68cc1f2cc81589acc2c35c4875a1230b0267 (diff) | |
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
Diffstat (limited to 'inc/Screen.hpp')
| -rw-r--r-- | inc/Screen.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; }; |
