How do I declare static constant values in C++? I want to be able to get the constant Vector3::Xaxis, but I should not be able to change it.
I\'ve seen the following cod
You need to initialize static members outside of class declaration.