Files
fall-fever/EventHandler.h
2020-08-31 00:56:04 +02:00

15 lines
157 B
C++

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