added include guards and vim session file

This commit is contained in:
Sheldon Lee
2020-06-12 19:28:43 +01:00
parent 397680dbf8
commit 9fd1fa4c83
4 changed files with 924 additions and 1 deletions
+5
View File
@@ -1,3 +1,6 @@
#ifndef VECT_H
#define VECT_H
typedef struct Vect2i{
int x, y;
} Vect2i;
@@ -9,3 +12,5 @@ typedef struct Vect2f{
void moveVect2i(Vect2i* vect, int x, int y);
void moveVect2f(Vect2f* vect, float x, float y);
#endif