mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 14:43:34 +00:00
23 lines
1.0 KiB
C++
23 lines
1.0 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* GLFWInputs.cpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/03/27 18:39:32 by maldavid #+# #+# */
|
|
/* Updated: 2024/03/27 18:42:18 by maldavid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <PreCompiled.h>
|
|
#include <Drivers/GLFW/GLFWInputs.h>
|
|
|
|
namespace mlx
|
|
{
|
|
void GLFWInputs::Update() noexcept
|
|
{
|
|
glfwPollEvents();
|
|
}
|
|
}
|