13 lines
146 B
C
13 lines
146 B
C
// point.h
|
|
|
|
#ifndef _POINT_h
|
|
#define _POINT_h
|
|
#include <stdint.h>
|
|
|
|
typedef struct _Point {
|
|
uint16_t x;
|
|
uint16_t y;
|
|
} Point;
|
|
|
|
#endif
|