ADDED: SetWindowFocused() #3142

This commit is contained in:
Ray 2023-07-02 17:48:00 +02:00
parent 5361d498c3
commit d1ab031a27
2 changed files with 9 additions and 0 deletions

View file

@ -1705,6 +1705,14 @@ void SetWindowOpacity(float opacity)
#endif
}
// Set window focused
void SetWindowFocused(void)
{
#if defined(PLATFORM_DESKTOP)
glfwFocusWindow(CORE.Window.handle);
#endif
}
// Get current screen width
int GetScreenWidth(void)
{