test avoid bulled game

Dependencies:   C12832_lcd LCD_fonts mbed mbed-rtos

point.h

Committer:
kaku_jyoko
Date:
2016-12-05
Revision:
7:defdc7cb4e0b
Parent:
4:0fe59e58def9

File content as of revision 7:defdc7cb4e0b:

#ifndef point_h
#define point_h

#define BOARD_X 128
#define BOARD_Y 32

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