Guest User

Untitled

a guest
Dec 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class player{
  2. constructor(){
  3. this.key.left = false;
  4. this.key.right = false;
  5. }
  6.  
  7. key(){
  8. $("body").keydown((e)=>{
  9. if(e.keyCode === 39){
  10. this.key.left = true;
  11. }
  12. });
  13. }
  14. }
Add Comment
Please, Sign In to add comment