test avoid bulled game

Dependencies:   C12832_lcd LCD_fonts mbed mbed-rtos

point.h

Committer:
kaku_jyoko
Date:
2016-12-02
Revision:
4:0fe59e58def9
Parent:
2:50a76ed8bf55

File content as of revision 4:0fe59e58def9:

#ifndef point_h
#define point_h

#define BOARD_X 128
#define BOARD_Y 32

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