Hi Everyone!
I'm quite new in this, but I have some experience in game development in other environments. I have created simple game, and now its time to add sound. It looks pretty simple, as it should be, but it's not working. Can somebody please give me some guidelines what to do.
I have something like this:
void app::Begin( void )
{
agk::LoadSound(1,"..\burp.wav");
}
void app::Loop ( void )
{
agk::PlaySound(1);
}
According to tutorials it should work, but I can't hear anything.
P.S. I have configured all include and debug/release folders, and I don't have any error.
Any help is appreciated!