12 lines
224 B
C
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 |