mirror of
https://github.com/danbulant/arcade-machine
synced 2026-06-17 05:21:23 +00:00
32 lines
898 B
JavaScript
32 lines
898 B
JavaScript
|
|
//Paths
|
|
var AsphyxiaPath = "C:\\Users\\kryvas\\Downloads\\asphyxia-core-win-x64\\asphyxia.exe"
|
|
var GamePath1 = "C:\\sdvx\\spice2.lnk"
|
|
var GamePath2 = ""
|
|
var GamePath3 = ""
|
|
var GamePath4 = ""
|
|
var GamePath5 = ""
|
|
var GamePath6 = ""
|
|
|
|
//exes
|
|
var browser = "brave.exe"
|
|
var GameExe1 = "spice.exe"
|
|
var GameExe2 = ""
|
|
var GameExe3 = ""
|
|
var GameExe4 = ""
|
|
var GameExe5 = ""
|
|
var GameExe6 = ""
|
|
|
|
//Keys
|
|
var KeyUp = "KeyW"
|
|
var KeyDown = "KeyS"
|
|
var KeyLeft = "KeyA"
|
|
var KeyRight = "KeyD"
|
|
var KeyStart = "KeyE"
|
|
var ExitKey1 = "G" // Only add uppercase name of the key without "Key" part example: "KeyA" becomes "A"
|
|
var ExitKey2 = "H" // Only add uppercase name of the key without "Key" part example: "KeyA" becomes "A"
|
|
|
|
|
|
|
|
if(module) // kdyz to neimportujes pres require tak module bude undefined
|
|
module.exports = { ExitKey1, ExitKey2, GameExe1, GameExe2, GameExe3, GameExe4, GameExe5, GameExe6 };
|