Kostadin Chakarov / Mbed 2 deprecated el17kec

Dependencies:   mbed

Map/Map.h

Committer:
kocemax
Date:
2019-03-26
Revision:
5:12c179da4788
Child:
6:39bda45efeed

File content as of revision 5:12c179da4788:

#ifndef MAP_H
#define MAP_H

#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
#include "PlayerControl.h"
#include "Ball.h"

/** Map Class
@author Kostadin Chakarov, University of Leeds
@brief Creates the map in the Breakout++ game 
@date March 2019
*/ 

struct Centerpoints 
{
    int x;
    int y;
};

class Map
{

public:
     Map();
    ~Map();
    void setCenterpoints();
    void drawMap(N5110 &lcd);
    
private:


};
#endif