Right now, the way my scene manager works is with an enum and a switch case.
I have a method that a scene can call called changeScene(MENU_SCENE) and so on.
In the scene manager itself, I have a switch case that says, case MENU_SCENE: return new MenuScene().
This means each time I add a new scene I must add it to the switch case.
Is there a batter way to do this without a switch case? Ideally I'd like something where given a string, returns a BaseScene*, but the way I can think of it would still involve a switch case (or nested ifs since strings in cases are not permitted).
Thanks