#include #include #include #include "Support.h" int Random() { return (rand() % 65535) - 32767; } bool IsKeyDown(int key) { const auto window = glfwGetCurrentContext(); return glfwGetKey(window, key) == GLFW_PRESS; }