From 2cc30dd826e003186ae61bf6efb72ffd5f352b42 Mon Sep 17 00:00:00 2001 From: devZoGok Date: Sat, 27 Jul 2024 19:42:03 +0300 Subject: [PATCH] method made public --- rayCaster.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rayCaster.h b/rayCaster.h index 1d47027..e9350df 100644 --- a/rayCaster.h +++ b/rayCaster.h @@ -17,9 +17,9 @@ namespace vb01{ static std::vector cast(Vector3, Vector3, Node*, const float = .0, const float = .0); static std::vector cast(Vector3, Vector3, std::vector, const float = .0, const float = .0); + static void sortResults(std::vector&); private: static std::vector retrieveCollisions(Vector3, Vector3, Node*, const float, const float); - static void sortResults(std::vector&); }; }