2024-02-22 00:56:22 -06:00

15 lines
325 B
C

#pragma once
#ifndef _FUNCS_HEADER_
#define _FUNCS_HEADER_
#include <glad/glad.h>
#include <GLFW/glfw3.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
void framebuffer_size_callback(GLFWwindow* window, int width, int height);
void processInput(GLFWwindow* window);
#endif