15 lines
205 B
C++
15 lines
205 B
C++
|
#ifndef CONTROLS_H
|
||
|
#define CONTROLS_H
|
||
|
|
||
|
#include <glad/glad.h>
|
||
|
#include <GLFW/glfw3.h>
|
||
|
|
||
|
#define BLOCKPICK_TIMEOUT 0.15f
|
||
|
|
||
|
namespace controls{
|
||
|
void init();
|
||
|
void update(GLFWwindow* window);
|
||
|
};
|
||
|
|
||
|
#endif
|