MayaFlux 0.2.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 127 of file WindowManager.cpp.

128{
129 return std::ranges::any_of(m_windows,
130 [](const auto& w) { return w->should_close(); });
131}
std::vector< std::shared_ptr< Window > > m_windows

References m_windows.