Im having trouble making walls for a maze game. I tried using color but it isn't working. I tried a lot of things seen on this site. It keeps saying that it "can not find variable - BLACK"
public boolean hitWalls()
{
if (isTouching(Color(BLACK)))
{
return true;
}
else
{
return false;
}
}
