dropped .dll/.so support

This commit is contained in:
2024-12-23 13:47:28 +03:00
parent 001c6a8a47
commit 409cd18de6
18 changed files with 95 additions and 118 deletions

View File

@@ -5,11 +5,10 @@
#include "omath/Vector3.hpp"
#include "omath/Triangle3d.hpp"
#include "omath/omath_export.hpp"
namespace omath::collision
{
class OMATH_API Ray
class Ray
{
public:
Vector3 start;
@@ -21,7 +20,7 @@ namespace omath::collision
[[nodiscard]]
Vector3 DirectionVectorNormalized() const;
};
class OMATH_API LineTracer
class LineTracer
{
public:
LineTracer() = delete;