Change vector2 type name

This commit is contained in:
gamemasterplc 2024-04-23 17:09:47 -05:00
parent 1e83c979fb
commit 7703c88607
2 changed files with 17 additions and 17 deletions

View file

@ -4,10 +4,10 @@
#include "math.h"
#include "dolphin/mtx.h"
typedef struct vector2 {
typedef struct vec2f {
float x;
float y;
} Vector2;
} Vec2f;
#define ABS(x) (((x) < 0) ? -(x) : (x))