Core: Make all Variant math types structs

Some were declared as structs (public by default) and others as classes
(private by default) but in practice all these math types exposed as
Variants are all 100% public.
This commit is contained in:
Rémi Verschelde 2022-02-04 14:30:17 +01:00
parent 8495be9cec
commit 5ddb518496
No known key found for this signature in database
GPG key ID: C3336907360768E1
9 changed files with 26 additions and 31 deletions

View file

@ -28,8 +28,8 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#ifndef DYNAMICBVH_H
#define DYNAMICBVH_H
#ifndef DYNAMIC_BVH_H
#define DYNAMIC_BVH_H
#include "core/math/aabb.h"
#include "core/templates/list.h"
@ -474,4 +474,4 @@ void DynamicBVH::ray_query(const Vector3 &p_from, const Vector3 &p_to, QueryResu
} while (depth > 0);
}
#endif // DYNAMICBVH_H
#endif // DYNAMIC_BVH_H