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.
Dependencies: mbed ELEC2645_Project_el18to
Diff: GameEngine/GameEngine.h
- Revision:
- 3:793a6186b557
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/GameEngine/GameEngine.h Wed Apr 08 11:35:58 2020 +0000
@@ -0,0 +1,20 @@
+#ifndef GAMEENGINE_H
+#define GAMEENGINE_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+#include "CCar.h"
+
+
+class GameEngine
+{
+
+public:
+ GameEngine();
+ ~GameEngine();
+ void run(N5110 &lcd, Gamepad &pad, CCar &user);
+
+};
+
+#endif
\ No newline at end of file