Update fixed local variable call

This commit is contained in:
Lev
2021-04-17 18:55:53 -05:00
parent e62b657157
commit 8ba3b819ee

View File

@ -36,7 +36,7 @@ class Button
{
if(this.state == true) fill (255);
else fill(0);
rect(locX, locY, w, h);
rect(this.locX, this.locY, this.w, this.h);
}
flick(x, y)
{