15 lines
256 B
C++
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 |