We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69b5ef7 commit e5f148cCopy full SHA for e5f148c
src/console_io/src/window.cpp
@@ -30,19 +30,23 @@ bool window::operator==(const window &other) const
30
return win_ptr == other.win_ptr;
31
}
32
33
-int window::get_size_x() const {
+int window::get_size_x() const
34
+{
35
return size_x;
36
37
-int window::get_size_y() const {
38
+int window::get_size_y() const
39
40
return size_y;
41
42
-int window::get_offset_x() const {
43
+int window::get_offset_x() const
44
45
return offset_x;
46
47
-int window::get_offset_y() const {
48
+int window::get_offset_y() const
49
50
return offset_y;
51
52
0 commit comments