bool is_paused()
{
if(snd.getStatus()==STATUS.Paused)
{
return true;
}
else
{
return false;
}
}
the compiler says:bool is_paused()
{
if(snd.getStatus()==snd.Status.Paused)
{
return true;
}
else
{
return false;
}
}
I'm using sf namespace:using namespace sf;
now what is the problem?