test avoid bulled game

Dependencies:   C12832_lcd LCD_fonts mbed mbed-rtos

point.h

Committer:
kaku_jyoko
Date:
2016-12-16
Revision:
63:4c22abbe4727
Parent:
4:0fe59e58def9

File content as of revision 63:4c22abbe4727:

#ifndef point_h
#define point_h

#define BOARD_X 128
#define BOARD_Y 32

typedef struct {
    int x;
    int y;
} point;
#endif