I have a c++ project which has multiple cpp files and functions.
Each file needs its own parameters (i.e., MaxHorizonVelocity, MaxVerticalVelocity etc.).
I want that these parameters won't be hard coded but read from a single configuration-parameters file at an initialization step.
For now I think to define a parameters class which will read the parameters at the begining and will be "static" (in some sense which I'm not sure about ...).
Is that considered a good practice? Is there another way?