현재 tizen을 run 돌렸을때에
problems 창에서
warnings이 2개떴는데
하나는
"Expected ' "use strict"; ' before 'this'.
하나는
오류가뜬 function에서
function sprite(img, x, y, width, height) {
this.img = img;
this.x = x*2;
this.y = y*2;
this.width = width*2;
this.height = height*2;
};
마지막에 ;를 썼는데도 안썼다고 나오네요
뭐가 문제일까요 ㅠ