Add HuSetVecF to ext_math behind a guard

This commit is contained in:
dbalatoni13 2025-04-01 07:04:54 +02:00
parent 6b41c9aa17
commit 0f4682655b

View file

@ -32,4 +32,8 @@ typedef struct vec2f {
#define asind(x) (180.0*(asinf((x)) / M_PI)) #define asind(x) (180.0*(asinf((x)) / M_PI))
#define atan2d(y, x) (180.0*(atan2((y), (x)) / M_PI)) #define atan2d(y, x) (180.0*(atan2((y), (x)) / M_PI))
#ifndef __MWERKS__
void HuSetVecF(Vec* arg0, f32 arg8, f32 arg9, f32 argA)
#endif
#endif #endif