#include "HuskyWindow.h"
#include "../event/input.h"
#include "../core/Log.h"
#include <glad/glad.h>
#include <GLFW/glfw3.h>
#include <iostream>
namespace Husky.
{
HuskyWindow::HuskyWindow(int width, int height, const char* title)
{
glfwInit();
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3)...