| 220 | } |
| 221 | |
| 222 | Rect2i WindowWrapper::get_window_rect() const { |
| 223 | ERR_FAIL_COND_V(!get_window_enabled(), Rect2i()); |
| 224 | return Rect2i(window->get_position(), window->get_size()); |
| 225 | } |
| 226 | |
| 227 | int WindowWrapper::get_window_screen() const { |
| 228 | ERR_FAIL_COND_V(!get_window_enabled(), -1); |
no test coverage detected