Sooner Competitive Robotics / Mbed 2 deprecated IEEE_14_Freescale

Dependencies:   mbed

Fork of IEEE_14_Freescale by IEEE 2014 Mbed

game.h

Committer:
sswatek
Date:
2014-03-23
Revision:
34:4ad11cda1eca
Parent:
32:ff71f61bb9f6
Child:
36:67773a788d52

File content as of revision 34:4ad11cda1eca:

#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();
    void runFirstRow();
};

#endif