first commit

This commit is contained in:
Sheldon Lee
2020-06-12 02:46:44 +01:00
commit e14c7e8576
6 changed files with 147 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "vect.h"
void moveVect2i(Vect2i* vect, int x, int y)
{
vect->x += x;
vect->y += y;
}
void moveVect2f(Vect2f* vect, float x, float y)
{
vect->x += x;
vect->y += y;
}