test avoid bulled game

Dependencies:   C12832_lcd LCD_fonts mbed mbed-rtos

point.h

Committer:
kaku_jyoko
Date:
2016-12-12
Revision:
30:f26dcbaa946d
Parent:
4:0fe59e58def9

File content as of revision 30:f26dcbaa946d:

#ifndef point_h
#define point_h

#define BOARD_X 128
#define BOARD_Y 32

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