#ifndef DARTS_H #define DARTS_H #include typedef struct { float x; float y; } coordinate_t; uint8_t score(coordinate_t position); #endif