summary refs log tree commit diff
path: root/src/Support.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Support.cpp')
-rw-r--r--src/Support.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/Support.cpp b/src/Support.cpp
index 850d0bb..2f24e94 100644
--- a/src/Support.cpp
+++ b/src/Support.cpp
@@ -1,17 +1,8 @@
-#include <stdbool.h>
 #include <stdlib.h>
 
-#include <GLFW/glfw3.h>
-
 #include "Support.h"
 
 int Random()
 {
 	return (rand() % 65535) - 32767;
 }
-
-bool IsKeyDown(int key)
-{
-	const auto window = glfwGetCurrentContext();
-	return glfwGetKey(window, key) == GLFW_PRESS;
-}