2024-11-20 20:51:32 -06:00

15 lines
256 B
C++

#pragma once
#ifndef _FUNCS_HEADER_
#define _FUNCS_HEADER_
#include <iostream>
#include <thread>
#include <GLLoad.h>
#include "Draw.h"
extern NB::Camera* cam;
void framebuffer_size_callback(GLFWwindow*, int, int);
void processInput(GLFWwindow*);
#endif