summaryrefslogtreecommitdiff
path: root/inc/Screen.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/Screen.hpp')
-rw-r--r--inc/Screen.hpp4
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;
};