Say, I have 2 classes which are Audio and AudioManager. My question is, should these functions
void Play();
void Resume();
void Pause();
void Stop();
void Load();
be within Audio class or AudioManager?
Well, what I did is put them all into AudioManager class, but I'm not so sure about it.