test avoid bulled game

Dependencies:   C12832_lcd LCD_fonts mbed mbed-rtos

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers point.h Source File

point.h

00001 #ifndef point_h
00002 #define point_h
00003 
00004 #define BOARD_X 128
00005 #define BOARD_Y 32
00006 
00007 typedef struct {
00008     int x;
00009     int y;
00010 } point;
00011 #endif