Plotter/point.h
2017-09-14 18:10:46 +02:00

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