hi,
i'm writing a game engine for blinds and visually impaired users using SFML and some other libraries
this is my function:
bool is_paused()
{
if(snd.getStatus()==STATUS.Paused)
{
return true;
}
else
{
return false;
}
}
the compiler says:
F:\projects\cpp\AGK\AGK.cpp: In member function 'bool sound::is_paused()':
F:\projects\cpp\AGK\AGK.cpp:179:25: error: 'STATUS' was not declared in this scope
if(snd.getStatus()==STATUS.Paused)
^
I've tried removing status and compiled but say pause was not declared in this scope
now what is the error?