This commit is contained in:
2025-12-28 13:55:10 -08:00
commit 9b4219aa67
131 changed files with 32853 additions and 0 deletions

16
include/vec2.h Normal file
View File

@ -0,0 +1,16 @@
#ifndef VEC2_H
#define VEC2_H
typedef struct {
int x, y;
} vec2i;
typedef struct {
float x, y;
} vec2f;
typedef struct {
double x, y;
} vec2d;
#endif /* VEC2_H */