Files
fall-fever/EventHandler.h
2020-08-31 13:21:19 +02:00

14 lines
127 B
C++

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