16 lines
362 B
C++
16 lines
362 B
C++
#pragma once
|
|
#ifndef _FUNCS_HEADER_
|
|
#define _FUNCS_HEADER_
|
|
#include <iostream>
|
|
#include <thread>
|
|
#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 |