Ahmed Hedait / Mbed 2 deprecated el16ah

Dependencies:   mbed

Committer:
ahmedhedait
Date:
Tue May 08 10:52:21 2018 +0000
Revision:
18:d18b9185fa4f
Parent:
17:68d4b4095d80
Child:
19:c6ebd1394bda
converted from using Joystick to the whole Gamepad.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ahmedhedait 17:68d4b4095d80 1 #ifndef MAZEENGINE_H
ahmedhedait 17:68d4b4095d80 2 #define MAZEENGINE_H
ahmedhedait 17:68d4b4095d80 3
ahmedhedait 17:68d4b4095d80 4 #include "mbed.h"
ahmedhedait 17:68d4b4095d80 5 #include "N5110.h"
ahmedhedait 17:68d4b4095d80 6 #include "Gamepad.h"
ahmedhedait 18:d18b9185fa4f 7 #include "Maze.h"
ahmedhedait 18:d18b9185fa4f 8 #include "Ball.h"
ahmedhedait 17:68d4b4095d80 9
ahmedhedait 17:68d4b4095d80 10 class MazeEngine
ahmedhedait 17:68d4b4095d80 11 {
ahmedhedait 17:68d4b4095d80 12 public:
ahmedhedait 17:68d4b4095d80 13
ahmedhedait 17:68d4b4095d80 14 MazeEngine();
ahmedhedait 17:68d4b4095d80 15 ~MazeEngine();
ahmedhedait 17:68d4b4095d80 16
ahmedhedait 17:68d4b4095d80 17 private:
ahmedhedait 17:68d4b4095d80 18
ahmedhedait 17:68d4b4095d80 19 };
ahmedhedait 17:68d4b4095d80 20 #endif