| 191 | } |
| 192 | |
| 193 | WindowHandle Window::GetHandle() const |
| 194 | { |
| 195 | #if NAZARA_PLATFORM_SAFE |
| 196 | if (!m_impl) |
| 197 | { |
| 198 | NazaraError("Window not created"); |
| 199 | return static_cast<WindowHandle>(0); |
| 200 | } |
| 201 | #endif |
| 202 | |
| 203 | return m_impl->GetHandle(); |
| 204 | } |
| 205 | |
| 206 | unsigned int Window::GetHeight() const |
| 207 | { |