我这样做时出错;
void ArcGame()
{
cout << "HELLO";
}
if(sprite.getGlobalBounds().intersects(arcabnet.getGlobalBounds()) and sf::Keyboard::isKeyPressed(sf::Keyboard::A))
{
ArcGame();
}
我收到错误:输入&#34; sf :: View&#34;不提供呼叫运营商。我该如何解决?我正在使用c ++,sfml和xcode,谢谢。