This commit is contained in:
IMback 2017-09-14 18:10:46 +02:00
commit dd6f37a960
15 changed files with 1841 additions and 0 deletions

12
point.h Normal file
View file

@ -0,0 +1,12 @@
// point.h
#ifndef _POINT_h
#define _POINT_h
#include <stdint.h>
typedef struct _Point {
uint16_t x;
uint16_t y;
} Point;
#endif