Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of IEEE_14_Freescale by
game.h
- Committer:
- sswatek
- Date:
- 2014-03-22
- Revision:
- 32:ff71f61bb9f6
- Child:
- 34:4ad11cda1eca
File content as of revision 32:ff71f61bb9f6:
#ifndef __GAME_H__
#define __GAME_H__
#include "mbed.h"
#include "dbgprint.h"
#include "robot.h"
class gamePlayer{
private:
robot ⊥
int row, column;
int rigOnFire;
int waveGaps[3];
float direction;
public:
gamePlayer(robot &botIn);
void checkWaves();
};
#endif
