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.
Diff: Map/Map.h
- Revision:
- 5:12c179da4788
- Child:
- 6:39bda45efeed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Map/Map.h Tue Mar 26 09:16:35 2019 +0000 @@ -0,0 +1,35 @@ +#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 \ No newline at end of file