2024-02-23 20:49:17 -06:00

12 lines
224 B
C

#pragma once
#ifndef _FUNCS_HEADER
#define _FUNCS_HEADER
#include <glad/glad.h>
#include <GLFW/glfw3.h>
void framebuffer_callback(GLFWwindow* window, int width, int height);
void processInputs(GLFWwindow* window);
#endif