revert comment

This commit is contained in:
s-prechtl 2023-01-11 12:30:52 +01:00
parent e70448cb6a
commit 57d442bf0e

View file

@ -202,18 +202,18 @@ function resetScore(): void {
/** /**
* Handler for key events. * Handler for key events.
*/ */
// function keyPressed() { function keyPressed() {
// if (!ready) return; if (!ready) return;
// // Jump // Jump
// if (BOOST_KEYS.includes(key.toLowerCase())) { if (BOOST_KEYS.includes(key.toLowerCase())) {
// resetScore(); resetScore();
// raspberry.boost(); raspberry.boost();
// } }
//
// // Pause the Game // Pause the Game
// if (key == "Escape") { if (key == "Escape") {
// paused = !paused; paused = !paused;
// } else if (paused) { } else if (paused) {
// paused = false; paused = false;
// } }
// } }