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-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