There are a couple of classes/systems I have spread out over some files. Where they all use the same constants I.E they all use a constant about the number of vertices per quad or the amount of data needed per quad.
Currently I just have them double defined in each CPP file of the class / system, but I feel like I should clump them up into a header or something and just include it across the classes that need them.
Is this the way I should go? Are there any pit falls to doing this? Is it even worth it if its only like 3 - 5 constants?