Advertisement
bobikus

Untitled

Apr 22nd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.       function drawFood() {
  3.         ctx.fillStyle = 'red';
  4.         ctx.strokeRect = 'darkred';
  5.         ctx.fillRect(foodX, foodY, 10, 10);
  6.         ctx.strokeRect(foodX, foodY, 10, 10);
  7.     }
  8.  
  9.     function drawFood() {
  10.         ctx.fillStyle = 'red';
  11.         ctx.strokestyle = 'darkred';
  12.         ctx.fillRect(foodX, foodY, 10, 10);
  13.         ctx.strokeRect(foodX, foodY, 10, 10);
  14.        }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement