This file contains 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
[ '115148165128257544: ⚞Ɦﻉɭɭƈคፕ⚟_AGARIAN#1505', | |
'134798829756219392: XtremePlayzCODE#0938', | |
'134800705230733312: EFHIII#0462', | |
'150964994756837376: Syfik (Horse man)#0007', | |
'155471221541044224: Yinyangyo567#0275', | |
'156530615414423552: Megabyte918#2990', | |
'161076898393227264: ░S░K░I░L░L░S░#8846', | |
'168884940690292736: Torto#7149', | |
'169657054624088064: iotg9#8553', | |
'176189647846768640: Light Runner#6112', |
This file contains 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
var keys = {}; | |
keyPressed = function() { | |
keys[keyCode] = true; | |
}; | |
keyReleased = function() { | |
delete keys[keyCode]; | |
}; | |
var Player = { | |
w: 50, | |
h: 50, |
This file contains 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
/** Main Variables **/ | |
var clicked, | |
pressed, | |
keys = {}, | |
candies = [], | |
bombs = [], | |
platforms = [], | |
lavas = [], | |
boosts = [], | |
ends = [], |
This file contains 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
/** Main Variables **/ | |
var clicked, | |
pressed, | |
keys = {}, | |
candies = [], | |
bombs = [], | |
platforms = [], | |
lavas = [], | |
boosts = [], | |
ends = [], |