Change vector2 type name
This commit is contained in:
parent
1e83c979fb
commit
7703c88607
2 changed files with 17 additions and 17 deletions
|
|
@ -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))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue