2023-10-03 18:16:45 +02:00
|
|
|
#ifndef CONTROLS_H
|
|
|
|
#define CONTROLS_H
|
|
|
|
|
|
|
|
#include <glad/glad.h>
|
|
|
|
#include <GLFW/glfw3.h>
|
|
|
|
|
2023-10-03 18:43:29 +02:00
|
|
|
#define BLOCKPICK_TIMEOUT 0.1f
|
2023-10-03 18:16:45 +02:00
|
|
|
|
|
|
|
namespace controls{
|
|
|
|
void init();
|
|
|
|
void update(GLFWwindow* window);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|