| 221 | } |
| 222 | |
| 223 | EE::Window::Window* Engine::getWindowID( const Uint32& winID ) { |
| 224 | for ( auto& it : mWindows ) { |
| 225 | if ( it.first == winID ) |
| 226 | return it.second; |
| 227 | } |
| 228 | return nullptr; |
| 229 | } |
| 230 | |
| 231 | EE::Window::Window* Engine::getCurrentWindow() const { |
| 232 | return mWindow; |
no outgoing calls
no test coverage detected