mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-12 15:13:34 +00:00
35 lines
1.3 KiB
C++
35 lines
1.3 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* GLFWDriverInstance.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/04/02 17:01:51 by maldavid #+# #+# */
|
|
/* Updated: 2024/04/02 17:04:12 by maldavid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef __MLX_GLFW_DRIVER_INSTANCE__
|
|
#define __MLX_GLFW_DRIVER_INSTANCE__
|
|
|
|
#include <Drivers/DriverInstance.h>
|
|
|
|
namespace mlx
|
|
{
|
|
class GLFWDriverInstance : public DriverInstance
|
|
{
|
|
public:
|
|
GLFWDriverInstance() = default;
|
|
|
|
inline bool InitDriver() override;
|
|
inline void ShutdownDriver() override;
|
|
|
|
~GLFWDriverInstance() override = default;
|
|
};
|
|
}
|
|
|
|
#include <Drivers/GLFW/GLFWDriverInstance.inl>
|
|
|
|
#endif
|