2024-11-23 01:35:55 -06:00

17 lines
311 B
C++

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