The classic dueling tanks game for mbed.
Dependencies: 4DGL-uLCD-SE DRV2605 EthernetInterface Game_Synchronizer MMA8452 SDFileSystem SparkfunAnalogJoystick mbed-rtos mbed wave_player
Fork of 2035_Tanks_Shell by
globals.h
- Committer:
- jford38
- Date:
- 2015-10-23
- Revision:
- 10:5da9b27e050e
File content as of revision 10:5da9b27e050e:
#ifndef GLOBAL_H
#define GLOBAL_H
#ifndef ULCD_4DGL_H_
#define ULCD_4DGL_H_
#include "uLCD_4DGL.h"
#endif
// === [global object] ===
extern uLCD_4DGL uLCD;
// === [global settings] ===
#define BACKGROUND_COLOR 0x000000
#define GRID_RADIUS 3
//I changed this
#define GRID_SIZE 8 //(GRID_RADIUS*2+1)
#define NUM_GRID_X 15
#define NUM_GRID_Y 14
#define NUM_GRID 210 //(NUM_GRID_X*NUM_GRID_Y)
//end of change
#endif //GLOBAL_H
