initial
This commit is contained in:
commit
dd6f37a960
15 changed files with 1841 additions and 0 deletions
12
point.h
Normal file
12
point.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue