Browse Source

REVIEWED: `Vector2Transform(()`

Ray 3 years ago
parent
commit
48a463cca8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/raymath.h

+ 1 - 1
src/raymath.h

@@ -335,7 +335,7 @@ RMAPI Vector2 Vector2Normalize(Vector2 v)
 }
 
 // Transforms a Vector2 by a given Matrix
-Vector2 Vector2Transform(Vector2 v, Matrix mat)
+RMAPI Vector2 Vector2Transform(Vector2 v, Matrix mat)
 {
 	Vector2 result = { 0 };