Skip to content

Commit

Permalink
First commit of lib.h
Browse files Browse the repository at this point in the history
  • Loading branch information
ctmbl committed Jan 12, 2022
1 parent 9ca1747 commit 4e11831
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions include/lib/lib.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#ifndef LIB_H
#define LIB_H

typedef struct Vel
{
int dx;
int dy;
} Vel ;


typedef struct phxParam
{
Vel velocity;
} phxParam;


#endif

0 comments on commit 4e11831

Please sign in to comment.