- The Ultimate Doom
- Doom II
- Final Doom - The Plutonia Experiment
- Final Doom - TNT: Evilution
Monaco supports Xbox 360 controllers.
To emulate an Xbox 360 controller using another gamepad, use x360ce (32-bit):
- Place the executable in the game directory.
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
/* | |
* TASK: | |
* Calculate the 15th element for this sequence: 2, 2, 4, 6, 10, 16, ... | |
*/ | |
const sequence = (n) => { | |
if (n < 0) { | |
throw new Error('n must be >= 0'); | |
} | |
return _sequence(n, 0, 0, 0); |
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
{ | |
"start": [12,42,82], | |
"mapNames": [ | |
"Temple of Roo, Level 2", | |
"Techo Cave 1", | |
"Techo Cave 2", | |
"Techo Cave 4", | |
"Techo Cave 3", | |
"Techo Cave 5", | |
"Techo Cave 6", |