Right now all the scenes are in the scene.h and scene.cpp files. This is fine for one or two scenes but it will quickly balloon to a many many thousand line file as functionality for additional scenes is added. Each derived scene type should be broken out into its own set of .h and .cpp files to aid in organization.
Right now all the scenes are in the
scene.h
andscene.cpp
files. This is fine for one or two scenes but it will quickly balloon to a many many thousand line file as functionality for additional scenes is added. Each derived scene type should be broken out into its own set of .h and .cpp files to aid in organization.