当我尝试制作一个公共布尔值时,它给了我错误
运算符 && 未定义参数类型 Boolean、Float
代码是:
public boolean mouseHover(int mouseX, int mouseY, float x, float y, float height, float width){
if(((mouseX >= x) && (x + width) && (mouseY >= y) && (mouseY <= y + height))){
return true;
}else{
return false;
}