MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ any_window_should_close()

bool MayaFlux::Core::WindowManager::any_window_should_close ( ) const

Checks if any window should close.

Returns
True if at least one window has close requested

Definition at line 111 of file WindowManager.cpp.

112{
113 return std::ranges::any_of(m_windows,
114 [](const auto& w) { return w->should_close(); });
115}
std::vector< std::shared_ptr< Window > > m_windows

References m_windows.