15 lines
157 B
C++
15 lines
157 B
C++
#pragma once
|
|
|
|
#include <GLFW/glfw3.h>
|
|
|
|
class EventHandler {
|
|
|
|
public:
|
|
|
|
void handleEvents(GLFWwindow *window);
|
|
bool gameShouldTerminate;
|
|
|
|
private:
|
|
|
|
|
|
}; |