This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cmake_minimum_required(VERSION 3.2) | |
| project(pong LANGUAGES CXX) | |
| set(SRCS "src/main.cpp") | |
| add_executable(pong ${SRCS}) | |
| ##### GLFW | |
| set(GLFW_BUILD_DOCS OFF CACHE BOOL "" FORCE) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name EmuParadise Download Workaround | |
| // @version 1.1.3 | |
| // @description Replaces the download button link with a working one; Now without JQuery slowdown! | |
| // @author Eptun, Me | |
| // @match https://*.emuparadise.me/*/*/* | |
| // @grant none | |
| // ==/UserScript== | |
| var id = document.URL.split("/")[5]; |